Yorke Lee | b4ce143 | 2014-06-09 13:53:23 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014 The Android Open Source Project |
| 3 | * |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 4 | * 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 Lee | b4ce143 | 2014-06-09 13:53:23 -0700 | [diff] [blame] | 6 | * |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
Yorke Lee | b4ce143 | 2014-06-09 13:53:23 -0700 | [diff] [blame] | 8 | * |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 9 | * 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 Lee | b4ce143 | 2014-06-09 13:53:23 -0700 | [diff] [blame] | 13 | */ |
| 14 | |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 15 | package android.telecom; |
Yorke Lee | b4ce143 | 2014-06-09 13:53:23 -0700 | [diff] [blame] | 16 | |
Hall Liu | 0464b9b | 2016-01-12 15:32:58 -0800 | [diff] [blame] | 17 | import android.Manifest; |
Yorke Lee | c61d1366 | 2015-09-21 17:25:25 -0700 | [diff] [blame] | 18 | import android.annotation.RequiresPermission; |
Jeff Sharkey | 910e081 | 2017-04-21 16:29:27 -0600 | [diff] [blame] | 19 | import android.annotation.SuppressAutoDoc; |
Santos Cordon | 6c7a388 | 2014-06-25 15:30:08 -0700 | [diff] [blame] | 20 | import android.annotation.SystemApi; |
Jeff Sharkey | d86b8fe | 2017-06-02 17:36:26 -0600 | [diff] [blame^] | 21 | import android.annotation.SystemService; |
Santos Cordon | 6c7a388 | 2014-06-25 15:30:08 -0700 | [diff] [blame] | 22 | import android.content.ComponentName; |
Yorke Lee | b4ce143 | 2014-06-09 13:53:23 -0700 | [diff] [blame] | 23 | import android.content.Context; |
Yorke Lee | 3e56ba1 | 2015-04-23 12:32:36 -0700 | [diff] [blame] | 24 | import android.content.Intent; |
Nancy Chen | b2299c1 | 2014-10-29 18:22:11 -0700 | [diff] [blame] | 25 | import android.net.Uri; |
Santos Cordon | 96efb48 | 2014-07-19 14:57:05 -0700 | [diff] [blame] | 26 | import android.os.Bundle; |
Santos Cordon | 6c7a388 | 2014-06-25 15:30:08 -0700 | [diff] [blame] | 27 | import android.os.RemoteException; |
| 28 | import android.os.ServiceManager; |
Yorke Lee | 2ae312e | 2014-09-12 17:58:48 -0700 | [diff] [blame] | 29 | import android.telephony.TelephonyManager; |
Anthony Lee | 6727926 | 2014-10-27 11:28:40 -0700 | [diff] [blame] | 30 | import android.text.TextUtils; |
Santos Cordon | 6c7a388 | 2014-06-25 15:30:08 -0700 | [diff] [blame] | 31 | import android.util.Log; |
Yorke Lee | b4ce143 | 2014-06-09 13:53:23 -0700 | [diff] [blame] | 32 | |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 33 | import com.android.internal.telecom.ITelecomService; |
Yorke Lee | b4ce143 | 2014-06-09 13:53:23 -0700 | [diff] [blame] | 34 | |
Jay Shrauner | 7746a94 | 2014-08-26 12:15:15 -0700 | [diff] [blame] | 35 | import java.util.ArrayList; |
Tyler Gunn | a1ed7d1 | 2014-09-08 09:52:22 -0700 | [diff] [blame] | 36 | import java.util.Collections; |
Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 37 | import java.util.List; |
| 38 | |
Yorke Lee | b4ce143 | 2014-06-09 13:53:23 -0700 | [diff] [blame] | 39 | /** |
Santos Cordon | d9e614f | 2014-10-28 13:10:36 -0700 | [diff] [blame] | 40 | * Provides access to information about active calls and registration/call-management functionality. |
Evan Charlton | 0e094d9 | 2014-11-08 15:49:16 -0800 | [diff] [blame] | 41 | * Apps can use methods in this class to determine the current call state. |
Santos Cordon | d9e614f | 2014-10-28 13:10:36 -0700 | [diff] [blame] | 42 | * <p> |
| 43 | * Apps do not instantiate this class directly; instead, they retrieve a reference to an instance |
| 44 | * through {@link Context#getSystemService Context.getSystemService(Context.TELECOM_SERVICE)}. |
| 45 | * <p> |
| 46 | * Note that access to some telecom information is permission-protected. Your app cannot access the |
| 47 | * protected information or gain access to protected functionality unless it has the appropriate |
| 48 | * permissions declared in its manifest file. Where permissions apply, they are noted in the method |
| 49 | * descriptions. |
Yorke Lee | b4ce143 | 2014-06-09 13:53:23 -0700 | [diff] [blame] | 50 | */ |
Jeff Sharkey | 910e081 | 2017-04-21 16:29:27 -0600 | [diff] [blame] | 51 | @SuppressAutoDoc |
Jeff Sharkey | d86b8fe | 2017-06-02 17:36:26 -0600 | [diff] [blame^] | 52 | @SystemService(Context.TELECOM_SERVICE) |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 53 | public class TelecomManager { |
Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 54 | |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 55 | /** |
Santos Cordon | 96efb48 | 2014-07-19 14:57:05 -0700 | [diff] [blame] | 56 | * Activity action: Starts the UI for handing an incoming call. This intent starts the in-call |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 57 | * UI by notifying the Telecom system that an incoming call exists for a specific call service |
| 58 | * (see {@link android.telecom.ConnectionService}). Telecom reads the Intent extras to find |
| 59 | * and bind to the appropriate {@link android.telecom.ConnectionService} which Telecom will |
Santos Cordon | 96efb48 | 2014-07-19 14:57:05 -0700 | [diff] [blame] | 60 | * ultimately use to control and get information about the call. |
| 61 | * <p> |
| 62 | * Input: get*Extra field {@link #EXTRA_PHONE_ACCOUNT_HANDLE} contains the component name of the |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 63 | * {@link android.telecom.ConnectionService} that Telecom should bind to. Telecom will then |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 64 | * ask the connection service for more information about the call prior to showing any UI. |
Brad Ebinger | 23b1c6d | 2017-01-12 13:10:40 -0800 | [diff] [blame] | 65 | * |
| 66 | * @deprecated Use {@link #addNewIncomingCall} instead. |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 67 | */ |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 68 | public static final String ACTION_INCOMING_CALL = "android.telecom.action.INCOMING_CALL"; |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 69 | |
| 70 | /** |
Yorke Lee | c3cf982 | 2014-10-02 09:38:39 -0700 | [diff] [blame] | 71 | * Similar to {@link #ACTION_INCOMING_CALL}, but is used only by Telephony to add a new |
| 72 | * sim-initiated MO call for carrier testing. |
Brad Ebinger | 23b1c6d | 2017-01-12 13:10:40 -0800 | [diff] [blame] | 73 | * @deprecated Use {@link #addNewUnknownCall} instead. |
Yorke Lee | c3cf982 | 2014-10-02 09:38:39 -0700 | [diff] [blame] | 74 | * @hide |
| 75 | */ |
| 76 | public static final String ACTION_NEW_UNKNOWN_CALL = "android.telecom.action.NEW_UNKNOWN_CALL"; |
| 77 | |
| 78 | /** |
Santos Cordon | 895d4b8 | 2015-06-25 16:41:48 -0700 | [diff] [blame] | 79 | * An {@link android.content.Intent} action sent by the telecom framework to start a |
| 80 | * configuration dialog for a registered {@link PhoneAccount}. There is no default dialog |
| 81 | * and each app that registers a {@link PhoneAccount} should provide one if desired. |
| 82 | * <p> |
| 83 | * A user can access the list of enabled {@link android.telecom.PhoneAccount}s through the Phone |
| 84 | * app's settings menu. For each entry, the settings app will add a click action. When |
| 85 | * triggered, the click-action will start this intent along with the extra |
| 86 | * {@link #EXTRA_PHONE_ACCOUNT_HANDLE} to indicate the {@link PhoneAccount} to configure. If the |
| 87 | * {@link PhoneAccount} package does not register an {@link android.app.Activity} for this |
| 88 | * intent, then it will not be sent. |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 89 | */ |
Santos Cordon | 895d4b8 | 2015-06-25 16:41:48 -0700 | [diff] [blame] | 90 | public static final String ACTION_CONFIGURE_PHONE_ACCOUNT = |
| 91 | "android.telecom.action.CONFIGURE_PHONE_ACCOUNT"; |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 92 | |
| 93 | /** |
Andrew Lee | 873cfbf | 2015-02-26 15:22:00 -0800 | [diff] [blame] | 94 | * The {@link android.content.Intent} action used to show the call accessibility settings page. |
| 95 | */ |
| 96 | public static final String ACTION_SHOW_CALL_ACCESSIBILITY_SETTINGS = |
| 97 | "android.telecom.action.SHOW_CALL_ACCESSIBILITY_SETTINGS"; |
| 98 | |
| 99 | /** |
Yorke Lee | 3818a892 | 2014-07-21 15:57:17 -0700 | [diff] [blame] | 100 | * The {@link android.content.Intent} action used to show the call settings page. |
| 101 | */ |
| 102 | public static final String ACTION_SHOW_CALL_SETTINGS = |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 103 | "android.telecom.action.SHOW_CALL_SETTINGS"; |
Yorke Lee | 3818a892 | 2014-07-21 15:57:17 -0700 | [diff] [blame] | 104 | |
| 105 | /** |
Andrew Lee | 866080f | 2015-02-19 12:05:33 -0800 | [diff] [blame] | 106 | * The {@link android.content.Intent} action used to show the respond via SMS settings page. |
| 107 | */ |
| 108 | public static final String ACTION_SHOW_RESPOND_VIA_SMS_SETTINGS = |
| 109 | "android.telecom.action.SHOW_RESPOND_VIA_SMS_SETTINGS"; |
| 110 | |
| 111 | /** |
Evan Charlton | 6d8604f | 2014-09-04 12:38:17 -0700 | [diff] [blame] | 112 | * The {@link android.content.Intent} action used to show the settings page used to configure |
| 113 | * {@link PhoneAccount} preferences. |
| 114 | */ |
| 115 | public static final String ACTION_CHANGE_PHONE_ACCOUNTS = |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 116 | "android.telecom.action.CHANGE_PHONE_ACCOUNTS"; |
Evan Charlton | 6d8604f | 2014-09-04 12:38:17 -0700 | [diff] [blame] | 117 | |
| 118 | /** |
Tyler Gunn | 346892f | 2017-04-14 13:43:30 -0700 | [diff] [blame] | 119 | * {@link android.content.Intent} action used indicate that a new phone account was just |
| 120 | * registered. |
| 121 | * <p> |
| 122 | * The Intent {@link Intent#getExtras() extras} will contain {@link #EXTRA_PHONE_ACCOUNT_HANDLE} |
| 123 | * to indicate which {@link PhoneAccount} was registered. |
| 124 | * <p> |
| 125 | * Will only be sent to the default dialer app (see {@link #getDefaultDialerPackage()}). |
Santos Cordon | c66f3ba | 2015-02-27 15:22:07 -0800 | [diff] [blame] | 126 | */ |
Santos Cordon | c66f3ba | 2015-02-27 15:22:07 -0800 | [diff] [blame] | 127 | public static final String ACTION_PHONE_ACCOUNT_REGISTERED = |
| 128 | "android.telecom.action.PHONE_ACCOUNT_REGISTERED"; |
| 129 | |
| 130 | /** |
Tyler Gunn | 346892f | 2017-04-14 13:43:30 -0700 | [diff] [blame] | 131 | * {@link android.content.Intent} action used indicate that a phone account was just |
| 132 | * unregistered. |
| 133 | * <p> |
| 134 | * The Intent {@link Intent#getExtras() extras} will contain {@link #EXTRA_PHONE_ACCOUNT_HANDLE} |
| 135 | * to indicate which {@link PhoneAccount} was unregistered. |
| 136 | * <p> |
| 137 | * Will only be sent to the default dialer app (see {@link #getDefaultDialerPackage()}). |
Bryce Lee | 30b0aa0 | 2015-09-23 21:53:53 -0700 | [diff] [blame] | 138 | */ |
Bryce Lee | 30b0aa0 | 2015-09-23 21:53:53 -0700 | [diff] [blame] | 139 | public static final String ACTION_PHONE_ACCOUNT_UNREGISTERED = |
| 140 | "android.telecom.action.PHONE_ACCOUNT_UNREGISTERED"; |
| 141 | |
| 142 | /** |
Yorke Lee | 1011f48 | 2015-04-23 15:58:27 -0700 | [diff] [blame] | 143 | * Activity action: Shows a dialog asking the user whether or not they want to replace the |
| 144 | * current default Dialer with the one specified in |
| 145 | * {@link #EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME}. |
| 146 | * |
| 147 | * Usage example: |
| 148 | * <pre> |
| 149 | * Intent intent = new Intent(TelecomManager.ACTION_CHANGE_DEFAULT_DIALER); |
| 150 | * intent.putExtra(TelecomManager.EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME, |
| 151 | * getActivity().getPackageName()); |
| 152 | * startActivity(intent); |
| 153 | * </pre> |
| 154 | */ |
| 155 | public static final String ACTION_CHANGE_DEFAULT_DIALER = |
| 156 | "android.telecom.action.CHANGE_DEFAULT_DIALER"; |
| 157 | |
| 158 | /** |
Yorke Lee | 107c4ce | 2015-06-15 12:08:24 -0700 | [diff] [blame] | 159 | * Broadcast intent action indicating that the current default dialer has changed. |
| 160 | * The string extra {@link #EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME} will contain the |
| 161 | * name of the package that the default dialer was changed to. |
| 162 | * |
| 163 | * @see #EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME |
| 164 | */ |
| 165 | public static final String ACTION_DEFAULT_DIALER_CHANGED = |
| 166 | "android.telecom.action.DEFAULT_DIALER_CHANGED"; |
| 167 | |
| 168 | /** |
Yorke Lee | 1011f48 | 2015-04-23 15:58:27 -0700 | [diff] [blame] | 169 | * Extra value used to provide the package name for {@link #ACTION_CHANGE_DEFAULT_DIALER}. |
| 170 | */ |
| 171 | public static final String EXTRA_CHANGE_DEFAULT_DIALER_PACKAGE_NAME = |
| 172 | "android.telecom.extra.CHANGE_DEFAULT_DIALER_PACKAGE_NAME"; |
| 173 | |
| 174 | /** |
Evan Charlton | 6eb262c | 2014-07-19 18:18:19 -0700 | [diff] [blame] | 175 | * Optional extra for {@link android.content.Intent#ACTION_CALL} containing a boolean that |
| 176 | * determines whether the speakerphone should be automatically turned on for an outgoing call. |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 177 | */ |
| 178 | public static final String EXTRA_START_CALL_WITH_SPEAKERPHONE = |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 179 | "android.telecom.extra.START_CALL_WITH_SPEAKERPHONE"; |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 180 | |
| 181 | /** |
Evan Charlton | 6eb262c | 2014-07-19 18:18:19 -0700 | [diff] [blame] | 182 | * Optional extra for {@link android.content.Intent#ACTION_CALL} containing an integer that |
| 183 | * determines the desired video state for an outgoing call. |
Santos Cordon | 96efb48 | 2014-07-19 14:57:05 -0700 | [diff] [blame] | 184 | * Valid options: |
Yorke Lee | 32f2473 | 2015-05-12 16:18:03 -0700 | [diff] [blame] | 185 | * {@link VideoProfile#STATE_AUDIO_ONLY}, |
| 186 | * {@link VideoProfile#STATE_BIDIRECTIONAL}, |
| 187 | * {@link VideoProfile#STATE_RX_ENABLED}, |
| 188 | * {@link VideoProfile#STATE_TX_ENABLED}. |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 189 | */ |
| 190 | public static final String EXTRA_START_CALL_WITH_VIDEO_STATE = |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 191 | "android.telecom.extra.START_CALL_WITH_VIDEO_STATE"; |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 192 | |
| 193 | /** |
Tyler Gunn | dd8756d | 2017-03-13 18:15:15 -0700 | [diff] [blame] | 194 | * Optional extra for {@link #addNewIncomingCall(PhoneAccountHandle, Bundle)} containing an |
| 195 | * integer that determines the requested video state for an incoming call. |
| 196 | * Valid options: |
| 197 | * {@link VideoProfile#STATE_AUDIO_ONLY}, |
| 198 | * {@link VideoProfile#STATE_BIDIRECTIONAL}, |
| 199 | * {@link VideoProfile#STATE_RX_ENABLED}, |
| 200 | * {@link VideoProfile#STATE_TX_ENABLED}. |
| 201 | */ |
| 202 | public static final String EXTRA_INCOMING_VIDEO_STATE = |
| 203 | "android.telecom.extra.INCOMING_VIDEO_STATE"; |
| 204 | |
| 205 | /** |
Santos Cordon | 96efb48 | 2014-07-19 14:57:05 -0700 | [diff] [blame] | 206 | * The extra used with an {@link android.content.Intent#ACTION_CALL} and |
| 207 | * {@link android.content.Intent#ACTION_DIAL} {@code Intent} to specify a |
| 208 | * {@link PhoneAccountHandle} to use when making the call. |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 209 | * <p class="note"> |
Santos Cordon | 96efb48 | 2014-07-19 14:57:05 -0700 | [diff] [blame] | 210 | * Retrieve with {@link android.content.Intent#getParcelableExtra(String)}. |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 211 | */ |
Evan Charlton | 6eb262c | 2014-07-19 18:18:19 -0700 | [diff] [blame] | 212 | public static final String EXTRA_PHONE_ACCOUNT_HANDLE = |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 213 | "android.telecom.extra.PHONE_ACCOUNT_HANDLE"; |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 214 | |
| 215 | /** |
Tyler Gunn | 335ff2e | 2015-07-30 14:18:33 -0700 | [diff] [blame] | 216 | * Optional extra for {@link android.content.Intent#ACTION_CALL} containing a string call |
| 217 | * subject which will be associated with an outgoing call. Should only be specified if the |
| 218 | * {@link PhoneAccount} supports the capability {@link PhoneAccount#CAPABILITY_CALL_SUBJECT}. |
| 219 | */ |
| 220 | public static final String EXTRA_CALL_SUBJECT = "android.telecom.extra.CALL_SUBJECT"; |
| 221 | |
| 222 | /** |
Yorke Lee | 04ea7d3 | 2015-06-05 15:59:18 -0700 | [diff] [blame] | 223 | * The extra used by a {@link ConnectionService} to provide the handle of the caller that |
| 224 | * has initiated a new incoming call. |
| 225 | */ |
Yorke Lee | 02fb5bc | 2015-06-09 12:27:36 -0700 | [diff] [blame] | 226 | public static final String EXTRA_INCOMING_CALL_ADDRESS = |
| 227 | "android.telecom.extra.INCOMING_CALL_ADDRESS"; |
Yorke Lee | 04ea7d3 | 2015-06-05 15:59:18 -0700 | [diff] [blame] | 228 | |
| 229 | /** |
Santos Cordon | 96efb48 | 2014-07-19 14:57:05 -0700 | [diff] [blame] | 230 | * Optional extra for {@link #ACTION_INCOMING_CALL} containing a {@link Bundle} which contains |
| 231 | * metadata about the call. This {@link Bundle} will be returned to the |
| 232 | * {@link ConnectionService}. |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 233 | */ |
| 234 | public static final String EXTRA_INCOMING_CALL_EXTRAS = |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 235 | "android.telecom.extra.INCOMING_CALL_EXTRAS"; |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 236 | |
| 237 | /** |
Nancy Chen | 10798dc | 2014-08-08 14:00:25 -0700 | [diff] [blame] | 238 | * Optional extra for {@link android.content.Intent#ACTION_CALL} and |
| 239 | * {@link android.content.Intent#ACTION_DIAL} {@code Intent} containing a {@link Bundle} |
| 240 | * which contains metadata about the call. This {@link Bundle} will be saved into |
Santos Cordon | 7a060d5 | 2015-06-19 14:52:04 -0700 | [diff] [blame] | 241 | * {@code Call.Details} and passed to the {@link ConnectionService} when placing the call. |
Nancy Chen | 10798dc | 2014-08-08 14:00:25 -0700 | [diff] [blame] | 242 | */ |
| 243 | public static final String EXTRA_OUTGOING_CALL_EXTRAS = |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 244 | "android.telecom.extra.OUTGOING_CALL_EXTRAS"; |
Nancy Chen | 10798dc | 2014-08-08 14:00:25 -0700 | [diff] [blame] | 245 | |
| 246 | /** |
Yorke Lee | c3cf982 | 2014-10-02 09:38:39 -0700 | [diff] [blame] | 247 | * @hide |
| 248 | */ |
| 249 | public static final String EXTRA_UNKNOWN_CALL_HANDLE = |
| 250 | "android.telecom.extra.UNKNOWN_CALL_HANDLE"; |
| 251 | |
| 252 | /** |
Sailesh Nepal | da6bb38 | 2016-04-14 19:51:46 -0700 | [diff] [blame] | 253 | * Optional extra for incoming and outgoing calls containing a long which specifies the time the |
| 254 | * call was created. This value is in milliseconds since boot. |
| 255 | * @hide |
| 256 | */ |
| 257 | public static final String EXTRA_CALL_CREATED_TIME_MILLIS = |
| 258 | "android.telecom.extra.CALL_CREATED_TIME_MILLIS"; |
| 259 | |
| 260 | /** |
| 261 | * Optional extra for incoming and outgoing calls containing a long which specifies the time |
| 262 | * telecom began routing the call. This value is in milliseconds since boot. |
| 263 | * @hide |
| 264 | */ |
| 265 | public static final String EXTRA_CALL_TELECOM_ROUTING_START_TIME_MILLIS = |
| 266 | "android.telecom.extra.CALL_TELECOM_ROUTING_START_TIME_MILLIS"; |
| 267 | |
| 268 | /** |
| 269 | * Optional extra for incoming and outgoing calls containing a long which specifies the time |
| 270 | * telecom finished routing the call. This value is in milliseconds since boot. |
| 271 | * @hide |
| 272 | */ |
| 273 | public static final String EXTRA_CALL_TELECOM_ROUTING_END_TIME_MILLIS = |
| 274 | "android.telecom.extra.CALL_TELECOM_ROUTING_END_TIME_MILLIS"; |
| 275 | |
| 276 | /** |
Evan Charlton | 6eb262c | 2014-07-19 18:18:19 -0700 | [diff] [blame] | 277 | * Optional extra for {@link android.telephony.TelephonyManager#ACTION_PHONE_STATE_CHANGED} |
| 278 | * containing the disconnect code. |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 279 | */ |
| 280 | public static final String EXTRA_CALL_DISCONNECT_CAUSE = |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 281 | "android.telecom.extra.CALL_DISCONNECT_CAUSE"; |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 282 | |
| 283 | /** |
Evan Charlton | 6eb262c | 2014-07-19 18:18:19 -0700 | [diff] [blame] | 284 | * Optional extra for {@link android.telephony.TelephonyManager#ACTION_PHONE_STATE_CHANGED} |
| 285 | * containing the disconnect message. |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 286 | */ |
| 287 | public static final String EXTRA_CALL_DISCONNECT_MESSAGE = |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 288 | "android.telecom.extra.CALL_DISCONNECT_MESSAGE"; |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 289 | |
| 290 | /** |
Evan Charlton | 6eb262c | 2014-07-19 18:18:19 -0700 | [diff] [blame] | 291 | * Optional extra for {@link android.telephony.TelephonyManager#ACTION_PHONE_STATE_CHANGED} |
| 292 | * containing the component name of the associated connection service. |
Evan Charlton | 0e094d9 | 2014-11-08 15:49:16 -0800 | [diff] [blame] | 293 | * @hide |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 294 | */ |
Evan Charlton | 0e094d9 | 2014-11-08 15:49:16 -0800 | [diff] [blame] | 295 | @SystemApi |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 296 | public static final String EXTRA_CONNECTION_SERVICE = |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 297 | "android.telecom.extra.CONNECTION_SERVICE"; |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 298 | |
| 299 | /** |
Hall Liu | 90f6290 | 2015-11-19 16:19:24 -0800 | [diff] [blame] | 300 | * Optional extra for communicating the call technology used by a |
| 301 | * {@link com.android.internal.telephony.Connection} to Telecom |
| 302 | * @hide |
| 303 | */ |
| 304 | public static final String EXTRA_CALL_TECHNOLOGY_TYPE = |
| 305 | "android.telecom.extra.CALL_TECHNOLOGY_TYPE"; |
| 306 | |
| 307 | /** |
Nancy Chen | 7ab1dc4 | 2014-09-09 18:18:26 -0700 | [diff] [blame] | 308 | * An optional {@link android.content.Intent#ACTION_CALL} intent extra denoting the |
| 309 | * package name of the app specifying an alternative gateway for the call. |
| 310 | * The value is a string. |
| 311 | * |
| 312 | * (The following comment corresponds to the all GATEWAY_* extras) |
| 313 | * An app which sends the {@link android.content.Intent#ACTION_CALL} intent can specify an |
| 314 | * alternative address to dial which is different from the one specified and displayed to |
| 315 | * the user. This alternative address is referred to as the gateway address. |
| 316 | */ |
| 317 | public static final String GATEWAY_PROVIDER_PACKAGE = |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 318 | "android.telecom.extra.GATEWAY_PROVIDER_PACKAGE"; |
Nancy Chen | 7ab1dc4 | 2014-09-09 18:18:26 -0700 | [diff] [blame] | 319 | |
| 320 | /** |
| 321 | * An optional {@link android.content.Intent#ACTION_CALL} intent extra corresponding to the |
| 322 | * original address to dial for the call. This is used when an alternative gateway address is |
| 323 | * provided to recall the original address. |
| 324 | * The value is a {@link android.net.Uri}. |
| 325 | * |
| 326 | * (See {@link #GATEWAY_PROVIDER_PACKAGE} for details) |
| 327 | */ |
| 328 | public static final String GATEWAY_ORIGINAL_ADDRESS = |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 329 | "android.telecom.extra.GATEWAY_ORIGINAL_ADDRESS"; |
Nancy Chen | 7ab1dc4 | 2014-09-09 18:18:26 -0700 | [diff] [blame] | 330 | |
| 331 | /** |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 332 | * The number which the party on the other side of the line will see (and use to return the |
| 333 | * call). |
| 334 | * <p> |
Santos Cordon | 96efb48 | 2014-07-19 14:57:05 -0700 | [diff] [blame] | 335 | * {@link ConnectionService}s which interact with {@link RemoteConnection}s should only populate |
| 336 | * this if the {@link android.telephony.TelephonyManager#getLine1Number()} value, as that is the |
| 337 | * user's expected caller ID. |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 338 | */ |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 339 | public static final String EXTRA_CALL_BACK_NUMBER = "android.telecom.extra.CALL_BACK_NUMBER"; |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 340 | |
| 341 | /** |
Hall Liu | 8f613fb | 2017-02-14 18:11:11 -0800 | [diff] [blame] | 342 | * The number of milliseconds that Telecom should wait after disconnecting a call via the |
| 343 | * ACTION_NEW_OUTGOING_CALL broadcast, in order to wait for the app which cancelled the call |
| 344 | * to make a new one. |
| 345 | * @hide |
| 346 | */ |
| 347 | public static final String EXTRA_NEW_OUTGOING_CALL_CANCEL_TIMEOUT = |
| 348 | "android.telecom.extra.NEW_OUTGOING_CALL_CANCEL_TIMEOUT"; |
| 349 | |
| 350 | /** |
Hall Liu | 95d5587 | 2017-01-25 17:12:49 -0800 | [diff] [blame] | 351 | * A boolean extra, which when set on the {@link Intent#ACTION_CALL} intent or on the bundle |
| 352 | * passed into {@link #placeCall(Uri, Bundle)}, indicates that the call should be initiated with |
| 353 | * an RTT session open. See {@link android.telecom.Call.RttCall} for more information on RTT. |
| 354 | */ |
| 355 | public static final String EXTRA_START_CALL_WITH_RTT = |
| 356 | "android.telecom.extra.START_CALL_WITH_RTT"; |
| 357 | |
| 358 | /** |
Santos Cordon | f2600eb | 2015-06-22 15:02:20 -0700 | [diff] [blame] | 359 | * A boolean meta-data value indicating whether an {@link InCallService} implements an |
| 360 | * in-call user interface. Dialer implementations (see {@link #getDefaultDialerPackage()}) which |
| 361 | * would also like to replace the in-call interface should set this meta-data to {@code true} in |
| 362 | * the manifest registration of their {@link InCallService}. |
| 363 | */ |
| 364 | public static final String METADATA_IN_CALL_SERVICE_UI = "android.telecom.IN_CALL_SERVICE_UI"; |
| 365 | |
| 366 | /** |
Santos Cordon | 8888155 | 2015-12-10 17:29:54 -0800 | [diff] [blame] | 367 | * A boolean meta-data value indicating whether an {@link InCallService} implements an |
| 368 | * in-call user interface to be used while the device is in car-mode (see |
| 369 | * {@link android.content.res.Configuration.UI_MODE_TYPE_CAR}). |
| 370 | * |
| 371 | * @hide |
| 372 | */ |
| 373 | public static final String METADATA_IN_CALL_SERVICE_CAR_MODE_UI = |
| 374 | "android.telecom.IN_CALL_SERVICE_CAR_MODE_UI"; |
| 375 | |
| 376 | /** |
Sailesh Nepal | 9c2618b | 2016-01-23 16:28:22 -0800 | [diff] [blame] | 377 | * A boolean meta-data value indicating whether an {@link InCallService} implements ringing. |
| 378 | * Dialer implementations (see {@link #getDefaultDialerPackage()}) which would also like to |
| 379 | * override the system provided ringing should set this meta-data to {@code true} in the |
| 380 | * manifest registration of their {@link InCallService}. |
| 381 | */ |
| 382 | public static final String METADATA_IN_CALL_SERVICE_RINGING = |
| 383 | "android.telecom.IN_CALL_SERVICE_RINGING"; |
| 384 | |
| 385 | /** |
Tyler Gunn | 876dbfb | 2016-03-14 15:18:07 -0700 | [diff] [blame] | 386 | * A boolean meta-data value indicating whether an {@link InCallService} wants to be informed of |
| 387 | * calls which have the {@link Call.Details#PROPERTY_IS_EXTERNAL_CALL} property. An external |
| 388 | * call is one which a {@link ConnectionService} knows about, but is not connected to directly. |
| 389 | * Dialer implementations (see {@link #getDefaultDialerPackage()}) which would like to be |
| 390 | * informed of external calls should set this meta-data to {@code true} in the manifest |
| 391 | * registration of their {@link InCallService}. By default, the {@link InCallService} will NOT |
| 392 | * be informed of external calls. |
| 393 | */ |
| 394 | public static final String METADATA_INCLUDE_EXTERNAL_CALLS = |
| 395 | "android.telecom.INCLUDE_EXTERNAL_CALLS"; |
| 396 | |
| 397 | /** |
Tyler Gunn | 24e1833 | 2017-02-10 09:42:49 -0800 | [diff] [blame] | 398 | * A boolean meta-data value indicating whether an {@link InCallService} wants to be informed of |
| 399 | * calls which have the {@link Call.Details#PROPERTY_SELF_MANAGED} property. A self-managed |
| 400 | * call is one which originates from a self-managed {@link ConnectionService} which has chosen |
| 401 | * to implement its own call user interface. An {@link InCallService} implementation which |
| 402 | * would like to be informed of external calls should set this meta-data to {@code true} in the |
| 403 | * manifest registration of their {@link InCallService}. By default, the {@link InCallService} |
| 404 | * will NOT be informed about self-managed calls. |
| 405 | * <p> |
| 406 | * An {@link InCallService} which receives self-managed calls is free to view and control the |
| 407 | * state of calls in the self-managed {@link ConnectionService}. An example use-case is |
Tyler Gunn | dd8756d | 2017-03-13 18:15:15 -0700 | [diff] [blame] | 408 | * exposing these calls to an automotive device via its companion app. |
| 409 | * <p> |
| 410 | * This meta-data can only be set for an {@link InCallService} which also sets |
| 411 | * {@link #METADATA_IN_CALL_SERVICE_UI}. Only the default phone/dialer app, or a car-mode |
| 412 | * {@link InCallService} can see self-managed calls. |
Tyler Gunn | 24e1833 | 2017-02-10 09:42:49 -0800 | [diff] [blame] | 413 | * <p> |
| 414 | * See also {@link Connection#PROPERTY_SELF_MANAGED}. |
| 415 | */ |
| 416 | public static final String METADATA_INCLUDE_SELF_MANAGED_CALLS = |
| 417 | "android.telecom.INCLUDE_SELF_MANAGED_CALLS"; |
| 418 | |
| 419 | /** |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 420 | * The dual tone multi-frequency signaling character sent to indicate the dialing system should |
| 421 | * pause for a predefined period. |
| 422 | */ |
| 423 | public static final char DTMF_CHARACTER_PAUSE = ','; |
| 424 | |
| 425 | /** |
| 426 | * The dual-tone multi-frequency signaling character sent to indicate the dialing system should |
| 427 | * wait for user confirmation before proceeding. |
| 428 | */ |
| 429 | public static final char DTMF_CHARACTER_WAIT = ';'; |
| 430 | |
| 431 | /** |
| 432 | * TTY (teletypewriter) mode is off. |
| 433 | * |
| 434 | * @hide |
| 435 | */ |
| 436 | public static final int TTY_MODE_OFF = 0; |
| 437 | |
| 438 | /** |
| 439 | * TTY (teletypewriter) mode is on. The speaker is off and the microphone is muted. The user |
| 440 | * will communicate with the remote party by sending and receiving text messages. |
| 441 | * |
| 442 | * @hide |
| 443 | */ |
| 444 | public static final int TTY_MODE_FULL = 1; |
| 445 | |
| 446 | /** |
| 447 | * TTY (teletypewriter) mode is in hearing carryover mode (HCO). The microphone is muted but the |
| 448 | * speaker is on. The user will communicate with the remote party by sending text messages and |
| 449 | * hearing an audible reply. |
| 450 | * |
| 451 | * @hide |
| 452 | */ |
| 453 | public static final int TTY_MODE_HCO = 2; |
| 454 | |
| 455 | /** |
| 456 | * TTY (teletypewriter) mode is in voice carryover mode (VCO). The speaker is off but the |
| 457 | * microphone is still on. User will communicate with the remote party by speaking and receiving |
| 458 | * text message replies. |
| 459 | * |
| 460 | * @hide |
| 461 | */ |
| 462 | public static final int TTY_MODE_VCO = 3; |
| 463 | |
| 464 | /** |
| 465 | * Broadcast intent action indicating that the current TTY mode has changed. An intent extra |
| 466 | * provides this state as an int. |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 467 | * |
Santos Cordon | 96efb48 | 2014-07-19 14:57:05 -0700 | [diff] [blame] | 468 | * @see #EXTRA_CURRENT_TTY_MODE |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 469 | * @hide |
| 470 | */ |
| 471 | public static final String ACTION_CURRENT_TTY_MODE_CHANGED = |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 472 | "android.telecom.action.CURRENT_TTY_MODE_CHANGED"; |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 473 | |
| 474 | /** |
| 475 | * The lookup key for an int that indicates the current TTY mode. |
| 476 | * Valid modes are: |
| 477 | * - {@link #TTY_MODE_OFF} |
| 478 | * - {@link #TTY_MODE_FULL} |
| 479 | * - {@link #TTY_MODE_HCO} |
| 480 | * - {@link #TTY_MODE_VCO} |
| 481 | * |
| 482 | * @hide |
| 483 | */ |
| 484 | public static final String EXTRA_CURRENT_TTY_MODE = |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 485 | "android.telecom.intent.extra.CURRENT_TTY_MODE"; |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 486 | |
| 487 | /** |
Santos Cordon | 96efb48 | 2014-07-19 14:57:05 -0700 | [diff] [blame] | 488 | * Broadcast intent action indicating that the TTY preferred operating mode has changed. An |
| 489 | * intent extra provides the new mode as an int. |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 490 | * |
Santos Cordon | 96efb48 | 2014-07-19 14:57:05 -0700 | [diff] [blame] | 491 | * @see #EXTRA_TTY_PREFERRED_MODE |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 492 | * @hide |
| 493 | */ |
| 494 | public static final String ACTION_TTY_PREFERRED_MODE_CHANGED = |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 495 | "android.telecom.action.TTY_PREFERRED_MODE_CHANGED"; |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 496 | |
| 497 | /** |
Santos Cordon | 96efb48 | 2014-07-19 14:57:05 -0700 | [diff] [blame] | 498 | * The lookup key for an int that indicates preferred TTY mode. Valid modes are: - |
| 499 | * {@link #TTY_MODE_OFF} - {@link #TTY_MODE_FULL} - {@link #TTY_MODE_HCO} - |
| 500 | * {@link #TTY_MODE_VCO} |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 501 | * |
| 502 | * @hide |
| 503 | */ |
| 504 | public static final String EXTRA_TTY_PREFERRED_MODE = |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 505 | "android.telecom.intent.extra.TTY_PREFERRED"; |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 506 | |
Nancy Chen | 9d568c0 | 2014-09-08 14:17:59 -0700 | [diff] [blame] | 507 | /** |
Bryce Lee | 5e4dd3e | 2015-08-03 16:59:10 -0700 | [diff] [blame] | 508 | * Broadcast intent action for letting custom component know to show the missed call |
Sailesh Nepal | be15ad9 | 2016-01-21 19:26:20 -0800 | [diff] [blame] | 509 | * notification. If no custom component exists then this is sent to the default dialer which |
| 510 | * should post a missed-call notification. |
Bryce Lee | 5e4dd3e | 2015-08-03 16:59:10 -0700 | [diff] [blame] | 511 | */ |
Bryce Lee | 5e4dd3e | 2015-08-03 16:59:10 -0700 | [diff] [blame] | 512 | public static final String ACTION_SHOW_MISSED_CALLS_NOTIFICATION = |
| 513 | "android.telecom.action.SHOW_MISSED_CALLS_NOTIFICATION"; |
| 514 | |
| 515 | /** |
Sailesh Nepal | be15ad9 | 2016-01-21 19:26:20 -0800 | [diff] [blame] | 516 | * The number of calls associated with the notification. If the number is zero then the missed |
| 517 | * call notification should be dismissed. |
Bryce Lee | 5e4dd3e | 2015-08-03 16:59:10 -0700 | [diff] [blame] | 518 | */ |
Bryce Lee | 5e4dd3e | 2015-08-03 16:59:10 -0700 | [diff] [blame] | 519 | public static final String EXTRA_NOTIFICATION_COUNT = |
| 520 | "android.telecom.extra.NOTIFICATION_COUNT"; |
| 521 | |
| 522 | /** |
| 523 | * The number associated with the missed calls. This number is only relevant |
| 524 | * when EXTRA_NOTIFICATION_COUNT is 1. |
Bryce Lee | 5e4dd3e | 2015-08-03 16:59:10 -0700 | [diff] [blame] | 525 | */ |
Bryce Lee | 5e4dd3e | 2015-08-03 16:59:10 -0700 | [diff] [blame] | 526 | public static final String EXTRA_NOTIFICATION_PHONE_NUMBER = |
| 527 | "android.telecom.extra.NOTIFICATION_PHONE_NUMBER"; |
| 528 | |
| 529 | /** |
Bryce Lee | 8d41d1d | 2015-08-10 07:40:42 -0700 | [diff] [blame] | 530 | * The intent to clear missed calls. |
| 531 | * @hide |
| 532 | */ |
| 533 | @SystemApi |
| 534 | public static final String EXTRA_CLEAR_MISSED_CALLS_INTENT = |
| 535 | "android.telecom.extra.CLEAR_MISSED_CALLS_INTENT"; |
| 536 | |
| 537 | /** |
| 538 | * The intent to call back a missed call. |
| 539 | * @hide |
| 540 | */ |
| 541 | @SystemApi |
| 542 | public static final String EXTRA_CALL_BACK_INTENT = |
| 543 | "android.telecom.extra.CALL_BACK_INTENT"; |
| 544 | |
| 545 | /** |
Nancy Chen | 9d568c0 | 2014-09-08 14:17:59 -0700 | [diff] [blame] | 546 | * The following 4 constants define how properties such as phone numbers and names are |
| 547 | * displayed to the user. |
| 548 | */ |
| 549 | |
Santos Cordon | ed769ae | 2015-05-13 18:47:38 -0700 | [diff] [blame] | 550 | /** |
| 551 | * Indicates that the address or number of a call is allowed to be displayed for caller ID. |
| 552 | */ |
Nancy Chen | 9d568c0 | 2014-09-08 14:17:59 -0700 | [diff] [blame] | 553 | public static final int PRESENTATION_ALLOWED = 1; |
| 554 | |
Santos Cordon | ed769ae | 2015-05-13 18:47:38 -0700 | [diff] [blame] | 555 | /** |
| 556 | * Indicates that the address or number of a call is blocked by the other party. |
| 557 | */ |
Nancy Chen | 9d568c0 | 2014-09-08 14:17:59 -0700 | [diff] [blame] | 558 | public static final int PRESENTATION_RESTRICTED = 2; |
| 559 | |
Santos Cordon | ed769ae | 2015-05-13 18:47:38 -0700 | [diff] [blame] | 560 | /** |
| 561 | * Indicates that the address or number of a call is not specified or known by the carrier. |
| 562 | */ |
Nancy Chen | 9d568c0 | 2014-09-08 14:17:59 -0700 | [diff] [blame] | 563 | public static final int PRESENTATION_UNKNOWN = 3; |
| 564 | |
Santos Cordon | ed769ae | 2015-05-13 18:47:38 -0700 | [diff] [blame] | 565 | /** |
| 566 | * Indicates that the address or number of a call belongs to a pay phone. |
| 567 | */ |
Nancy Chen | 9d568c0 | 2014-09-08 14:17:59 -0700 | [diff] [blame] | 568 | public static final int PRESENTATION_PAYPHONE = 4; |
| 569 | |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 570 | private static final String TAG = "TelecomManager"; |
Yorke Lee | b4ce143 | 2014-06-09 13:53:23 -0700 | [diff] [blame] | 571 | |
| 572 | private final Context mContext; |
Yorke Lee | b4ce143 | 2014-06-09 13:53:23 -0700 | [diff] [blame] | 573 | |
Hall Liu | e1bc2ec | 2015-10-09 15:58:37 -0700 | [diff] [blame] | 574 | private final ITelecomService mTelecomServiceOverride; |
| 575 | |
Santos Cordon | 6c7a388 | 2014-06-25 15:30:08 -0700 | [diff] [blame] | 576 | /** |
| 577 | * @hide |
| 578 | */ |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 579 | public static TelecomManager from(Context context) { |
| 580 | return (TelecomManager) context.getSystemService(Context.TELECOM_SERVICE); |
Yorke Lee | b4ce143 | 2014-06-09 13:53:23 -0700 | [diff] [blame] | 581 | } |
Santos Cordon | 6c7a388 | 2014-06-25 15:30:08 -0700 | [diff] [blame] | 582 | |
| 583 | /** |
| 584 | * @hide |
| 585 | */ |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 586 | public TelecomManager(Context context) { |
Hall Liu | e1bc2ec | 2015-10-09 15:58:37 -0700 | [diff] [blame] | 587 | this(context, null); |
| 588 | } |
| 589 | |
| 590 | /** |
| 591 | * @hide |
| 592 | */ |
| 593 | public TelecomManager(Context context, ITelecomService telecomServiceImpl) { |
Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 594 | Context appContext = context.getApplicationContext(); |
| 595 | if (appContext != null) { |
| 596 | mContext = appContext; |
| 597 | } else { |
| 598 | mContext = context; |
| 599 | } |
Hall Liu | e1bc2ec | 2015-10-09 15:58:37 -0700 | [diff] [blame] | 600 | mTelecomServiceOverride = telecomServiceImpl; |
Hall Liu | e362e50 | 2016-01-07 17:35:54 -0800 | [diff] [blame] | 601 | android.telecom.Log.initMd5Sum(); |
Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 602 | } |
| 603 | |
| 604 | /** |
Santos Cordon | 91371dc | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 605 | * Return the {@link PhoneAccount} which will be used to place outgoing calls to addresses with |
| 606 | * the specified {@code uriScheme}. This {@link PhoneAccount} will always be a member of the |
| 607 | * list which is returned from invoking {@link #getCallCapablePhoneAccounts()}. The specific |
| 608 | * account returned depends on the following priorities: |
| 609 | * <ul> |
| 610 | * <li> If the user-selected default {@link PhoneAccount} supports the specified scheme, it will |
| 611 | * be returned. |
| 612 | * </li> |
| 613 | * <li> If there exists only one {@link PhoneAccount} that supports the specified scheme, it |
| 614 | * will be returned. |
| 615 | * </li> |
| 616 | * </ul> |
Ihab Awad | 94cf4bf | 2014-07-17 11:21:19 -0700 | [diff] [blame] | 617 | * <p> |
Santos Cordon | 91371dc | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 618 | * If no {@link PhoneAccount} fits the criteria above, this method will return {@code null}. |
| 619 | * |
Yorke Lee | c61d1366 | 2015-09-21 17:25:25 -0700 | [diff] [blame] | 620 | * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE} |
| 621 | * |
Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 622 | * @param uriScheme The URI scheme. |
Santos Cordon | 91371dc | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 623 | * @return The {@link PhoneAccountHandle} corresponding to the account to be used. |
Ihab Awad | 94cf4bf | 2014-07-17 11:21:19 -0700 | [diff] [blame] | 624 | */ |
Yorke Lee | c61d1366 | 2015-09-21 17:25:25 -0700 | [diff] [blame] | 625 | @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE) |
Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 626 | public PhoneAccountHandle getDefaultOutgoingPhoneAccount(String uriScheme) { |
Ihab Awad | 94cf4bf | 2014-07-17 11:21:19 -0700 | [diff] [blame] | 627 | try { |
| 628 | if (isServiceConnected()) { |
Svet Ganov | 16a1689 | 2015-04-16 10:32:04 -0700 | [diff] [blame] | 629 | return getTelecomService().getDefaultOutgoingPhoneAccount(uriScheme, |
| 630 | mContext.getOpPackageName()); |
Ihab Awad | 94cf4bf | 2014-07-17 11:21:19 -0700 | [diff] [blame] | 631 | } |
| 632 | } catch (RemoteException e) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 633 | Log.e(TAG, "Error calling ITelecomService#getDefaultOutgoingPhoneAccount", e); |
Ihab Awad | 94cf4bf | 2014-07-17 11:21:19 -0700 | [diff] [blame] | 634 | } |
| 635 | return null; |
| 636 | } |
| 637 | |
| 638 | /** |
Andrew Lee | d4abbfb | 2014-09-03 14:58:27 -0700 | [diff] [blame] | 639 | * Return the {@link PhoneAccount} which is the user-chosen default for making outgoing phone |
| 640 | * calls. This {@code PhoneAccount} will always be a member of the list which is returned from |
Nancy Chen | 210ef03 | 2014-09-15 17:58:42 -0700 | [diff] [blame] | 641 | * calling {@link #getCallCapablePhoneAccounts()} |
Santos Cordon | 91371dc | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 642 | * <p> |
Andrew Lee | d4abbfb | 2014-09-03 14:58:27 -0700 | [diff] [blame] | 643 | * Apps must be prepared for this method to return {@code null}, indicating that there currently |
| 644 | * exists no user-chosen default {@code PhoneAccount}. |
| 645 | * |
| 646 | * @return The user outgoing phone account selected by the user. |
Jay Shrauner | 225ccad | 2015-04-15 15:51:15 -0700 | [diff] [blame] | 647 | * @hide |
Andrew Lee | d4abbfb | 2014-09-03 14:58:27 -0700 | [diff] [blame] | 648 | */ |
| 649 | public PhoneAccountHandle getUserSelectedOutgoingPhoneAccount() { |
| 650 | try { |
| 651 | if (isServiceConnected()) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 652 | return getTelecomService().getUserSelectedOutgoingPhoneAccount(); |
Andrew Lee | d4abbfb | 2014-09-03 14:58:27 -0700 | [diff] [blame] | 653 | } |
| 654 | } catch (RemoteException e) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 655 | Log.e(TAG, "Error calling ITelecomService#getUserSelectedOutgoingPhoneAccount", e); |
Andrew Lee | d4abbfb | 2014-09-03 14:58:27 -0700 | [diff] [blame] | 656 | } |
| 657 | return null; |
| 658 | } |
| 659 | |
| 660 | /** |
Santos Cordon | 91371dc | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 661 | * Sets the user-chosen default for making outgoing phone calls. |
Andrew Lee | 59cac3a | 2014-08-28 16:50:10 -0700 | [diff] [blame] | 662 | * @hide |
| 663 | */ |
Andrew Lee | d4abbfb | 2014-09-03 14:58:27 -0700 | [diff] [blame] | 664 | public void setUserSelectedOutgoingPhoneAccount(PhoneAccountHandle accountHandle) { |
Andrew Lee | 59cac3a | 2014-08-28 16:50:10 -0700 | [diff] [blame] | 665 | try { |
| 666 | if (isServiceConnected()) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 667 | getTelecomService().setUserSelectedOutgoingPhoneAccount(accountHandle); |
Andrew Lee | 59cac3a | 2014-08-28 16:50:10 -0700 | [diff] [blame] | 668 | } |
| 669 | } catch (RemoteException e) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 670 | Log.e(TAG, "Error calling ITelecomService#setUserSelectedOutgoingPhoneAccount"); |
Andrew Lee | 59cac3a | 2014-08-28 16:50:10 -0700 | [diff] [blame] | 671 | } |
| 672 | } |
| 673 | |
| 674 | /** |
Andrew Lee | 59cac3a | 2014-08-28 16:50:10 -0700 | [diff] [blame] | 675 | * Returns the current SIM call manager. Apps must be prepared for this method to return |
| 676 | * {@code null}, indicating that there currently exists no user-chosen default |
| 677 | * {@code PhoneAccount}. |
Santos Cordon | 91371dc | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 678 | * |
Andrew Lee | 59cac3a | 2014-08-28 16:50:10 -0700 | [diff] [blame] | 679 | * @return The phone account handle of the current sim call manager. |
Andrew Lee | 59cac3a | 2014-08-28 16:50:10 -0700 | [diff] [blame] | 680 | */ |
| 681 | public PhoneAccountHandle getSimCallManager() { |
| 682 | try { |
| 683 | if (isServiceConnected()) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 684 | return getTelecomService().getSimCallManager(); |
Andrew Lee | 59cac3a | 2014-08-28 16:50:10 -0700 | [diff] [blame] | 685 | } |
| 686 | } catch (RemoteException e) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 687 | Log.e(TAG, "Error calling ITelecomService#getSimCallManager"); |
Andrew Lee | 59cac3a | 2014-08-28 16:50:10 -0700 | [diff] [blame] | 688 | } |
| 689 | return null; |
| 690 | } |
| 691 | |
| 692 | /** |
Sailesh Nepal | cf85562 | 2015-07-28 19:22:14 -0700 | [diff] [blame] | 693 | * Returns the current SIM call manager for the specified user. Apps must be prepared for this |
| 694 | * method to return {@code null}, indicating that there currently exists no user-chosen default |
| 695 | * {@code PhoneAccount}. |
| 696 | * |
| 697 | * @return The phone account handle of the current sim call manager. |
| 698 | * |
| 699 | * @hide |
| 700 | */ |
| 701 | public PhoneAccountHandle getSimCallManager(int userId) { |
| 702 | try { |
| 703 | if (isServiceConnected()) { |
| 704 | return getTelecomService().getSimCallManagerForUser(userId); |
| 705 | } |
| 706 | } catch (RemoteException e) { |
| 707 | Log.e(TAG, "Error calling ITelecomService#getSimCallManagerForUser"); |
| 708 | } |
| 709 | return null; |
| 710 | } |
| 711 | |
| 712 | /** |
Evan Charlton | eb0a8d5 | 2014-09-04 12:03:34 -0700 | [diff] [blame] | 713 | * Returns the current connection manager. Apps must be prepared for this method to return |
| 714 | * {@code null}, indicating that there currently exists no user-chosen default |
| 715 | * {@code PhoneAccount}. |
| 716 | * |
| 717 | * @return The phone account handle of the current connection manager. |
Evan Charlton | 0e094d9 | 2014-11-08 15:49:16 -0800 | [diff] [blame] | 718 | * @hide |
Evan Charlton | eb0a8d5 | 2014-09-04 12:03:34 -0700 | [diff] [blame] | 719 | */ |
Evan Charlton | 0e094d9 | 2014-11-08 15:49:16 -0800 | [diff] [blame] | 720 | @SystemApi |
Evan Charlton | eb0a8d5 | 2014-09-04 12:03:34 -0700 | [diff] [blame] | 721 | public PhoneAccountHandle getConnectionManager() { |
| 722 | return getSimCallManager(); |
| 723 | } |
| 724 | |
| 725 | /** |
Nancy Chen | 210ef03 | 2014-09-15 17:58:42 -0700 | [diff] [blame] | 726 | * Returns a list of the {@link PhoneAccountHandle}s which can be used to make and receive phone |
| 727 | * calls which support the specified URI scheme. |
Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 728 | * <P> |
| 729 | * For example, invoking with {@code "tel"} will find all {@link PhoneAccountHandle}s which |
| 730 | * support telephone calls (e.g. URIs such as {@code tel:555-555-1212}). Invoking with |
| 731 | * {@code "sip"} will find all {@link PhoneAccountHandle}s which support SIP calls (e.g. URIs |
| 732 | * such as {@code sip:example@sipexample.com}). |
| 733 | * |
| 734 | * @param uriScheme The URI scheme. |
| 735 | * @return A list of {@code PhoneAccountHandle} objects supporting the URI scheme. |
Evan Charlton | 0e094d9 | 2014-11-08 15:49:16 -0800 | [diff] [blame] | 736 | * @hide |
Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 737 | */ |
Evan Charlton | 0e094d9 | 2014-11-08 15:49:16 -0800 | [diff] [blame] | 738 | @SystemApi |
Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 739 | public List<PhoneAccountHandle> getPhoneAccountsSupportingScheme(String uriScheme) { |
| 740 | try { |
| 741 | if (isServiceConnected()) { |
Svet Ganov | 16a1689 | 2015-04-16 10:32:04 -0700 | [diff] [blame] | 742 | return getTelecomService().getPhoneAccountsSupportingScheme(uriScheme, |
| 743 | mContext.getOpPackageName()); |
Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 744 | } |
| 745 | } catch (RemoteException e) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 746 | Log.e(TAG, "Error calling ITelecomService#getPhoneAccountsSupportingScheme", e); |
Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 747 | } |
| 748 | return new ArrayList<>(); |
| 749 | } |
| 750 | |
Nancy Chen | 513c892 | 2014-09-17 14:47:20 -0700 | [diff] [blame] | 751 | |
| 752 | /** |
Santos Cordon | 91371dc | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 753 | * Returns a list of {@link PhoneAccountHandle}s which can be used to make and receive phone |
| 754 | * calls. The returned list includes only those accounts which have been explicitly enabled |
| 755 | * by the user. |
Nancy Chen | 513c892 | 2014-09-17 14:47:20 -0700 | [diff] [blame] | 756 | * |
Yorke Lee | c61d1366 | 2015-09-21 17:25:25 -0700 | [diff] [blame] | 757 | * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE} |
| 758 | * |
Nancy Chen | 513c892 | 2014-09-17 14:47:20 -0700 | [diff] [blame] | 759 | * @see #EXTRA_PHONE_ACCOUNT_HANDLE |
| 760 | * @return A list of {@code PhoneAccountHandle} objects. |
Nancy Chen | 513c892 | 2014-09-17 14:47:20 -0700 | [diff] [blame] | 761 | */ |
Yorke Lee | c61d1366 | 2015-09-21 17:25:25 -0700 | [diff] [blame] | 762 | @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE) |
Nancy Chen | 513c892 | 2014-09-17 14:47:20 -0700 | [diff] [blame] | 763 | public List<PhoneAccountHandle> getCallCapablePhoneAccounts() { |
Santos Cordon | 91371dc | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 764 | return getCallCapablePhoneAccounts(false); |
| 765 | } |
| 766 | |
| 767 | /** |
Tyler Gunn | 4774fb3 | 2017-04-07 14:57:37 -0700 | [diff] [blame] | 768 | * Returns a list of {@link PhoneAccountHandle}s for self-managed {@link ConnectionService}s. |
| 769 | * <p> |
| 770 | * Self-Managed {@link ConnectionService}s have a {@link PhoneAccount} with |
| 771 | * {@link PhoneAccount#CAPABILITY_SELF_MANAGED}. |
| 772 | * <p> |
| 773 | * Requires permission {@link android.Manifest.permission#READ_PHONE_STATE}, or that the caller |
| 774 | * is the default dialer app. |
| 775 | * <p> |
| 776 | * A {@link SecurityException} will be thrown if a called is not the default dialer, or lacks |
| 777 | * the {@link android.Manifest.permission#READ_PHONE_STATE} permission. |
| 778 | * |
| 779 | * @return A list of {@code PhoneAccountHandle} objects. |
| 780 | */ |
| 781 | @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE) |
| 782 | public List<PhoneAccountHandle> getSelfManagedPhoneAccounts() { |
| 783 | try { |
| 784 | if (isServiceConnected()) { |
| 785 | return getTelecomService().getSelfManagedPhoneAccounts(mContext.getOpPackageName()); |
| 786 | } |
| 787 | } catch (RemoteException e) { |
| 788 | Log.e(TAG, "Error calling ITelecomService#getSelfManagedPhoneAccounts()", e); |
| 789 | } |
| 790 | return new ArrayList<>(); |
| 791 | } |
| 792 | |
| 793 | /** |
Santos Cordon | 91371dc | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 794 | * Returns a list of {@link PhoneAccountHandle}s including those which have not been enabled |
| 795 | * by the user. |
| 796 | * |
| 797 | * @return A list of {@code PhoneAccountHandle} objects. |
| 798 | * @hide |
| 799 | */ |
| 800 | public List<PhoneAccountHandle> getCallCapablePhoneAccounts(boolean includeDisabledAccounts) { |
Nancy Chen | 513c892 | 2014-09-17 14:47:20 -0700 | [diff] [blame] | 801 | try { |
| 802 | if (isServiceConnected()) { |
Santos Cordon | 91371dc | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 803 | return getTelecomService().getCallCapablePhoneAccounts( |
| 804 | includeDisabledAccounts, mContext.getOpPackageName()); |
Nancy Chen | 513c892 | 2014-09-17 14:47:20 -0700 | [diff] [blame] | 805 | } |
| 806 | } catch (RemoteException e) { |
Santos Cordon | 91371dc | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 807 | Log.e(TAG, "Error calling ITelecomService#getCallCapablePhoneAccounts(" + |
| 808 | includeDisabledAccounts + ")", e); |
Nancy Chen | 513c892 | 2014-09-17 14:47:20 -0700 | [diff] [blame] | 809 | } |
| 810 | return new ArrayList<>(); |
| 811 | } |
| 812 | |
Tyler Gunn | f5b29dc | 2014-09-03 09:09:12 -0700 | [diff] [blame] | 813 | /** |
Nancy Chen | 513c892 | 2014-09-17 14:47:20 -0700 | [diff] [blame] | 814 | * Returns a list of all {@link PhoneAccount}s registered for the calling package. |
| 815 | * |
| 816 | * @return A list of {@code PhoneAccountHandle} objects. |
Evan Charlton | 0e094d9 | 2014-11-08 15:49:16 -0800 | [diff] [blame] | 817 | * @hide |
Nancy Chen | 513c892 | 2014-09-17 14:47:20 -0700 | [diff] [blame] | 818 | */ |
Evan Charlton | 0e094d9 | 2014-11-08 15:49:16 -0800 | [diff] [blame] | 819 | @SystemApi |
Nancy Chen | 513c892 | 2014-09-17 14:47:20 -0700 | [diff] [blame] | 820 | public List<PhoneAccountHandle> getPhoneAccountsForPackage() { |
| 821 | try { |
| 822 | if (isServiceConnected()) { |
| 823 | return getTelecomService().getPhoneAccountsForPackage(mContext.getPackageName()); |
| 824 | } |
| 825 | } catch (RemoteException e) { |
| 826 | Log.e(TAG, "Error calling ITelecomService#getPhoneAccountsForPackage", e); |
| 827 | } |
| 828 | return null; |
| 829 | } |
| 830 | |
| 831 | /** |
Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 832 | * Return the {@link PhoneAccount} for a specified {@link PhoneAccountHandle}. Object includes |
| 833 | * resources which can be used in a user interface. |
Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 834 | * |
Evan Charlton | 6eb262c | 2014-07-19 18:18:19 -0700 | [diff] [blame] | 835 | * @param account The {@link PhoneAccountHandle}. |
Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 836 | * @return The {@link PhoneAccount} object. |
Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 837 | */ |
Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 838 | public PhoneAccount getPhoneAccount(PhoneAccountHandle account) { |
Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 839 | try { |
| 840 | if (isServiceConnected()) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 841 | return getTelecomService().getPhoneAccount(account); |
Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 842 | } |
| 843 | } catch (RemoteException e) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 844 | Log.e(TAG, "Error calling ITelecomService#getPhoneAccount", e); |
Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 845 | } |
| 846 | return null; |
| 847 | } |
| 848 | |
| 849 | /** |
Nancy Chen | 210ef03 | 2014-09-15 17:58:42 -0700 | [diff] [blame] | 850 | * Returns a count of all {@link PhoneAccount}s. |
Tyler Gunn | a1ed7d1 | 2014-09-08 09:52:22 -0700 | [diff] [blame] | 851 | * |
Nancy Chen | 210ef03 | 2014-09-15 17:58:42 -0700 | [diff] [blame] | 852 | * @return The count of {@link PhoneAccount}s. |
Tyler Gunn | a1ed7d1 | 2014-09-08 09:52:22 -0700 | [diff] [blame] | 853 | * @hide |
| 854 | */ |
| 855 | @SystemApi |
| 856 | public int getAllPhoneAccountsCount() { |
| 857 | try { |
| 858 | if (isServiceConnected()) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 859 | return getTelecomService().getAllPhoneAccountsCount(); |
Tyler Gunn | a1ed7d1 | 2014-09-08 09:52:22 -0700 | [diff] [blame] | 860 | } |
| 861 | } catch (RemoteException e) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 862 | Log.e(TAG, "Error calling ITelecomService#getAllPhoneAccountsCount", e); |
Tyler Gunn | a1ed7d1 | 2014-09-08 09:52:22 -0700 | [diff] [blame] | 863 | } |
| 864 | return 0; |
| 865 | } |
| 866 | |
| 867 | /** |
| 868 | * Returns a list of all {@link PhoneAccount}s. |
| 869 | * |
| 870 | * @return All {@link PhoneAccount}s. |
| 871 | * @hide |
| 872 | */ |
| 873 | @SystemApi |
| 874 | public List<PhoneAccount> getAllPhoneAccounts() { |
| 875 | try { |
| 876 | if (isServiceConnected()) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 877 | return getTelecomService().getAllPhoneAccounts(); |
Tyler Gunn | a1ed7d1 | 2014-09-08 09:52:22 -0700 | [diff] [blame] | 878 | } |
| 879 | } catch (RemoteException e) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 880 | Log.e(TAG, "Error calling ITelecomService#getAllPhoneAccounts", e); |
Tyler Gunn | a1ed7d1 | 2014-09-08 09:52:22 -0700 | [diff] [blame] | 881 | } |
| 882 | return Collections.EMPTY_LIST; |
| 883 | } |
| 884 | |
| 885 | /** |
| 886 | * Returns a list of all {@link PhoneAccountHandle}s. |
| 887 | * |
| 888 | * @return All {@link PhoneAccountHandle}s. |
| 889 | * @hide |
| 890 | */ |
| 891 | @SystemApi |
| 892 | public List<PhoneAccountHandle> getAllPhoneAccountHandles() { |
| 893 | try { |
| 894 | if (isServiceConnected()) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 895 | return getTelecomService().getAllPhoneAccountHandles(); |
Tyler Gunn | a1ed7d1 | 2014-09-08 09:52:22 -0700 | [diff] [blame] | 896 | } |
| 897 | } catch (RemoteException e) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 898 | Log.e(TAG, "Error calling ITelecomService#getAllPhoneAccountHandles", e); |
Tyler Gunn | a1ed7d1 | 2014-09-08 09:52:22 -0700 | [diff] [blame] | 899 | } |
| 900 | return Collections.EMPTY_LIST; |
| 901 | } |
| 902 | |
| 903 | /** |
Brad Ebinger | ec0d334 | 2016-01-29 15:40:43 -0800 | [diff] [blame] | 904 | * Register a {@link PhoneAccount} for use by the system that will be stored in Device Encrypted |
| 905 | * storage. When registering {@link PhoneAccount}s, existing registrations will be overwritten |
| 906 | * if the {@link PhoneAccountHandle} matches that of a {@link PhoneAccount} which is already |
Santos Cordon | d9e614f | 2014-10-28 13:10:36 -0700 | [diff] [blame] | 907 | * registered. Once registered, the {@link PhoneAccount} is listed to the user as an option |
| 908 | * when placing calls. The user may still need to enable the {@link PhoneAccount} within |
| 909 | * the phone app settings before the account is usable. |
| 910 | * <p> |
| 911 | * A {@link SecurityException} will be thrown if an app tries to register a |
| 912 | * {@link PhoneAccountHandle} where the package name specified within |
| 913 | * {@link PhoneAccountHandle#getComponentName()} does not match the package name of the app. |
Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 914 | * |
Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 915 | * @param account The complete {@link PhoneAccount}. |
Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 916 | */ |
Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 917 | public void registerPhoneAccount(PhoneAccount account) { |
Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 918 | try { |
| 919 | if (isServiceConnected()) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 920 | getTelecomService().registerPhoneAccount(account); |
Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 921 | } |
| 922 | } catch (RemoteException e) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 923 | Log.e(TAG, "Error calling ITelecomService#registerPhoneAccount", e); |
Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 924 | } |
| 925 | } |
| 926 | |
| 927 | /** |
Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 928 | * Remove a {@link PhoneAccount} registration from the system. |
Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 929 | * |
Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 930 | * @param accountHandle A {@link PhoneAccountHandle} for the {@link PhoneAccount} to unregister. |
Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 931 | */ |
Evan Charlton | 8c8a062 | 2014-07-20 12:31:00 -0700 | [diff] [blame] | 932 | public void unregisterPhoneAccount(PhoneAccountHandle accountHandle) { |
Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 933 | try { |
| 934 | if (isServiceConnected()) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 935 | getTelecomService().unregisterPhoneAccount(accountHandle); |
Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 936 | } |
| 937 | } catch (RemoteException e) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 938 | Log.e(TAG, "Error calling ITelecomService#unregisterPhoneAccount", e); |
Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 939 | } |
| 940 | } |
| 941 | |
| 942 | /** |
Nancy Chen | 7ab1dc4 | 2014-09-09 18:18:26 -0700 | [diff] [blame] | 943 | * Remove all Accounts that belong to the calling package from the system. |
Evan Charlton | 0e094d9 | 2014-11-08 15:49:16 -0800 | [diff] [blame] | 944 | * @hide |
Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 945 | */ |
Evan Charlton | 0e094d9 | 2014-11-08 15:49:16 -0800 | [diff] [blame] | 946 | @SystemApi |
Yorke Lee | 0604427 | 2015-04-14 15:16:59 -0700 | [diff] [blame] | 947 | public void clearPhoneAccounts() { |
| 948 | clearAccounts(); |
| 949 | } |
| 950 | /** |
| 951 | * Remove all Accounts that belong to the calling package from the system. |
| 952 | * @deprecated Use {@link #clearPhoneAccounts()} instead. |
| 953 | * @hide |
| 954 | */ |
| 955 | @SystemApi |
Nancy Chen | 7ab1dc4 | 2014-09-09 18:18:26 -0700 | [diff] [blame] | 956 | public void clearAccounts() { |
Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 957 | try { |
| 958 | if (isServiceConnected()) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 959 | getTelecomService().clearAccounts(mContext.getPackageName()); |
Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 960 | } |
| 961 | } catch (RemoteException e) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 962 | Log.e(TAG, "Error calling ITelecomService#clearAccounts", e); |
Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 963 | } |
| 964 | } |
| 965 | |
| 966 | /** |
Anthony Lee | 6727926 | 2014-10-27 11:28:40 -0700 | [diff] [blame] | 967 | * Remove all Accounts that belong to the specified package from the system. |
| 968 | * @hide |
| 969 | */ |
| 970 | public void clearAccountsForPackage(String packageName) { |
| 971 | try { |
| 972 | if (isServiceConnected() && !TextUtils.isEmpty(packageName)) { |
| 973 | getTelecomService().clearAccounts(packageName); |
| 974 | } |
| 975 | } catch (RemoteException e) { |
Nancy Chen | 5cf2784 | 2015-01-24 23:30:27 -0800 | [diff] [blame] | 976 | Log.e(TAG, "Error calling ITelecomService#clearAccountsForPackage", e); |
Anthony Lee | 6727926 | 2014-10-27 11:28:40 -0700 | [diff] [blame] | 977 | } |
| 978 | } |
| 979 | |
Yorke Lee | 1011f48 | 2015-04-23 15:58:27 -0700 | [diff] [blame] | 980 | |
Anthony Lee | 6727926 | 2014-10-27 11:28:40 -0700 | [diff] [blame] | 981 | /** |
Yorke Lee | 1011f48 | 2015-04-23 15:58:27 -0700 | [diff] [blame] | 982 | * @deprecated - Use {@link TelecomManager#getDefaultDialerPackage} to directly access |
| 983 | * the default dialer's package name instead. |
Ihab Awad | 807fe0a | 2014-07-09 12:30:52 -0700 | [diff] [blame] | 984 | * @hide |
| 985 | */ |
Santos Cordon | 6c7a388 | 2014-06-25 15:30:08 -0700 | [diff] [blame] | 986 | @SystemApi |
| 987 | public ComponentName getDefaultPhoneApp() { |
| 988 | try { |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 989 | if (isServiceConnected()) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 990 | return getTelecomService().getDefaultPhoneApp(); |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 991 | } |
Santos Cordon | 6c7a388 | 2014-06-25 15:30:08 -0700 | [diff] [blame] | 992 | } catch (RemoteException e) { |
| 993 | Log.e(TAG, "RemoteException attempting to get the default phone app.", e); |
| 994 | } |
| 995 | return null; |
| 996 | } |
| 997 | |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 998 | /** |
Yorke Lee | 1011f48 | 2015-04-23 15:58:27 -0700 | [diff] [blame] | 999 | * Used to determine the currently selected default dialer package. |
| 1000 | * |
| 1001 | * @return package name for the default dialer package or null if no package has been |
| 1002 | * selected as the default dialer. |
| 1003 | */ |
| 1004 | public String getDefaultDialerPackage() { |
| 1005 | try { |
| 1006 | if (isServiceConnected()) { |
| 1007 | return getTelecomService().getDefaultDialerPackage(); |
| 1008 | } |
| 1009 | } catch (RemoteException e) { |
| 1010 | Log.e(TAG, "RemoteException attempting to get the default dialer package name.", e); |
| 1011 | } |
| 1012 | return null; |
| 1013 | } |
| 1014 | |
| 1015 | /** |
Yorke Lee | 107c4ce | 2015-06-15 12:08:24 -0700 | [diff] [blame] | 1016 | * Used to set the default dialer package. |
| 1017 | * |
| 1018 | * @param packageName to set the default dialer to.. |
| 1019 | * |
| 1020 | * @result {@code true} if the default dialer was successfully changed, {@code false} if |
| 1021 | * the specified package does not correspond to an installed dialer, or is already |
| 1022 | * the default dialer. |
| 1023 | * |
| 1024 | * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE} |
| 1025 | * Requires permission: {@link android.Manifest.permission#WRITE_SECURE_SETTINGS} |
| 1026 | * |
| 1027 | * @hide |
| 1028 | */ |
| 1029 | public boolean setDefaultDialer(String packageName) { |
| 1030 | try { |
| 1031 | if (isServiceConnected()) { |
| 1032 | return getTelecomService().setDefaultDialer(packageName); |
| 1033 | } |
| 1034 | } catch (RemoteException e) { |
| 1035 | Log.e(TAG, "RemoteException attempting to set the default dialer.", e); |
| 1036 | } |
| 1037 | return false; |
| 1038 | } |
| 1039 | |
| 1040 | /** |
Yorke Lee | 1011f48 | 2015-04-23 15:58:27 -0700 | [diff] [blame] | 1041 | * Used to determine the dialer package that is preloaded on the system partition. |
| 1042 | * |
| 1043 | * @return package name for the system dialer package or null if no system dialer is preloaded. |
| 1044 | * @hide |
| 1045 | */ |
| 1046 | public String getSystemDialerPackage() { |
| 1047 | try { |
| 1048 | if (isServiceConnected()) { |
| 1049 | return getTelecomService().getSystemDialerPackage(); |
| 1050 | } |
| 1051 | } catch (RemoteException e) { |
| 1052 | Log.e(TAG, "RemoteException attempting to get the system dialer package name.", e); |
| 1053 | } |
| 1054 | return null; |
| 1055 | } |
| 1056 | |
| 1057 | /** |
Nancy Chen | 443e501 | 2014-10-15 15:48:21 -0700 | [diff] [blame] | 1058 | * Return whether a given phone number is the configured voicemail number for a |
| 1059 | * particular phone account. |
| 1060 | * |
Yorke Lee | c61d1366 | 2015-09-21 17:25:25 -0700 | [diff] [blame] | 1061 | * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE} |
| 1062 | * |
Nancy Chen | 443e501 | 2014-10-15 15:48:21 -0700 | [diff] [blame] | 1063 | * @param accountHandle The handle for the account to check the voicemail number against |
| 1064 | * @param number The number to look up. |
Nancy Chen | 443e501 | 2014-10-15 15:48:21 -0700 | [diff] [blame] | 1065 | */ |
Yorke Lee | c61d1366 | 2015-09-21 17:25:25 -0700 | [diff] [blame] | 1066 | @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE) |
Nancy Chen | 443e501 | 2014-10-15 15:48:21 -0700 | [diff] [blame] | 1067 | public boolean isVoiceMailNumber(PhoneAccountHandle accountHandle, String number) { |
| 1068 | try { |
| 1069 | if (isServiceConnected()) { |
Svet Ganov | 16a1689 | 2015-04-16 10:32:04 -0700 | [diff] [blame] | 1070 | return getTelecomService().isVoiceMailNumber(accountHandle, number, |
| 1071 | mContext.getOpPackageName()); |
Nancy Chen | 443e501 | 2014-10-15 15:48:21 -0700 | [diff] [blame] | 1072 | } |
| 1073 | } catch (RemoteException e) { |
Nancy Chen | 5cf2784 | 2015-01-24 23:30:27 -0800 | [diff] [blame] | 1074 | Log.e(TAG, "RemoteException calling ITelecomService#isVoiceMailNumber.", e); |
Nancy Chen | 443e501 | 2014-10-15 15:48:21 -0700 | [diff] [blame] | 1075 | } |
| 1076 | return false; |
| 1077 | } |
| 1078 | |
| 1079 | /** |
Yorke Lee | 49e2d46 | 2015-04-15 16:14:22 -0700 | [diff] [blame] | 1080 | * Return the voicemail number for a given phone account. |
Nancy Chen | 8c066f7c | 2014-12-03 15:18:08 -0800 | [diff] [blame] | 1081 | * |
Yorke Lee | c61d1366 | 2015-09-21 17:25:25 -0700 | [diff] [blame] | 1082 | * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE} |
| 1083 | * |
Yorke Lee | 49e2d46 | 2015-04-15 16:14:22 -0700 | [diff] [blame] | 1084 | * @param accountHandle The handle for the phone account. |
| 1085 | * @return The voicemail number for the phone account, and {@code null} if one has not been |
| 1086 | * configured. |
Nancy Chen | 8c066f7c | 2014-12-03 15:18:08 -0800 | [diff] [blame] | 1087 | */ |
Yorke Lee | c61d1366 | 2015-09-21 17:25:25 -0700 | [diff] [blame] | 1088 | @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE) |
Yorke Lee | 49e2d46 | 2015-04-15 16:14:22 -0700 | [diff] [blame] | 1089 | public String getVoiceMailNumber(PhoneAccountHandle accountHandle) { |
Nancy Chen | 8c066f7c | 2014-12-03 15:18:08 -0800 | [diff] [blame] | 1090 | try { |
| 1091 | if (isServiceConnected()) { |
Svet Ganov | 16a1689 | 2015-04-16 10:32:04 -0700 | [diff] [blame] | 1092 | return getTelecomService().getVoiceMailNumber(accountHandle, |
| 1093 | mContext.getOpPackageName()); |
Nancy Chen | 8c066f7c | 2014-12-03 15:18:08 -0800 | [diff] [blame] | 1094 | } |
| 1095 | } catch (RemoteException e) { |
Nancy Chen | 5cf2784 | 2015-01-24 23:30:27 -0800 | [diff] [blame] | 1096 | Log.e(TAG, "RemoteException calling ITelecomService#hasVoiceMailNumber.", e); |
Nancy Chen | 8c066f7c | 2014-12-03 15:18:08 -0800 | [diff] [blame] | 1097 | } |
Yorke Lee | 49e2d46 | 2015-04-15 16:14:22 -0700 | [diff] [blame] | 1098 | return null; |
Nancy Chen | 8c066f7c | 2014-12-03 15:18:08 -0800 | [diff] [blame] | 1099 | } |
| 1100 | |
| 1101 | /** |
Nancy Chen | 5cf2784 | 2015-01-24 23:30:27 -0800 | [diff] [blame] | 1102 | * Return the line 1 phone number for given phone account. |
| 1103 | * |
Yorke Lee | c61d1366 | 2015-09-21 17:25:25 -0700 | [diff] [blame] | 1104 | * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE} |
| 1105 | * |
Nancy Chen | 5cf2784 | 2015-01-24 23:30:27 -0800 | [diff] [blame] | 1106 | * @param accountHandle The handle for the account retrieve a number for. |
| 1107 | * @return A string representation of the line 1 phone number. |
Nancy Chen | 5cf2784 | 2015-01-24 23:30:27 -0800 | [diff] [blame] | 1108 | */ |
Yorke Lee | c61d1366 | 2015-09-21 17:25:25 -0700 | [diff] [blame] | 1109 | @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE) |
Nancy Chen | 5cf2784 | 2015-01-24 23:30:27 -0800 | [diff] [blame] | 1110 | public String getLine1Number(PhoneAccountHandle accountHandle) { |
| 1111 | try { |
| 1112 | if (isServiceConnected()) { |
Svet Ganov | 16a1689 | 2015-04-16 10:32:04 -0700 | [diff] [blame] | 1113 | return getTelecomService().getLine1Number(accountHandle, |
| 1114 | mContext.getOpPackageName()); |
Nancy Chen | 5cf2784 | 2015-01-24 23:30:27 -0800 | [diff] [blame] | 1115 | } |
| 1116 | } catch (RemoteException e) { |
| 1117 | Log.e(TAG, "RemoteException calling ITelecomService#getLine1Number.", e); |
| 1118 | } |
| 1119 | return null; |
| 1120 | } |
| 1121 | |
| 1122 | /** |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 1123 | * Returns whether there is an ongoing phone call (can be in dialing, ringing, active or holding |
Tyler Gunn | 24e1833 | 2017-02-10 09:42:49 -0800 | [diff] [blame] | 1124 | * states) originating from either a manager or self-managed {@link ConnectionService}. |
Nancy Chen | 0eb1e40 | 2014-08-21 22:52:29 -0700 | [diff] [blame] | 1125 | * <p> |
| 1126 | * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE} |
Tyler Gunn | 24e1833 | 2017-02-10 09:42:49 -0800 | [diff] [blame] | 1127 | * |
| 1128 | * @return {@code true} if there is an ongoing call in either a managed or self-managed |
| 1129 | * {@link ConnectionService}, {@code false} otherwise. |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 1130 | */ |
Yorke Lee | c61d1366 | 2015-09-21 17:25:25 -0700 | [diff] [blame] | 1131 | @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE) |
Nancy Chen | 0eb1e40 | 2014-08-21 22:52:29 -0700 | [diff] [blame] | 1132 | public boolean isInCall() { |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 1133 | try { |
| 1134 | if (isServiceConnected()) { |
Svet Ganov | 16a1689 | 2015-04-16 10:32:04 -0700 | [diff] [blame] | 1135 | return getTelecomService().isInCall(mContext.getOpPackageName()); |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 1136 | } |
| 1137 | } catch (RemoteException e) { |
Yorke Lee | 2ae312e | 2014-09-12 17:58:48 -0700 | [diff] [blame] | 1138 | Log.e(TAG, "RemoteException calling isInCall().", e); |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 1139 | } |
| 1140 | return false; |
| 1141 | } |
| 1142 | |
| 1143 | /** |
Tyler Gunn | 24e1833 | 2017-02-10 09:42:49 -0800 | [diff] [blame] | 1144 | * Returns whether there is an ongoing call originating from a managed |
| 1145 | * {@link ConnectionService}. An ongoing call can be in dialing, ringing, active or holding |
| 1146 | * states. |
| 1147 | * <p> |
| 1148 | * If you also need to know if there are ongoing self-managed calls, use {@link #isInCall()} |
| 1149 | * instead. |
| 1150 | * <p> |
| 1151 | * Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE} |
| 1152 | * |
| 1153 | * @return {@code true} if there is an ongoing call in a managed {@link ConnectionService}, |
| 1154 | * {@code false} otherwise. |
| 1155 | */ |
| 1156 | @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE) |
| 1157 | public boolean isInManagedCall() { |
| 1158 | try { |
| 1159 | if (isServiceConnected()) { |
| 1160 | return getTelecomService().isInManagedCall(mContext.getOpPackageName()); |
| 1161 | } |
| 1162 | } catch (RemoteException e) { |
| 1163 | Log.e(TAG, "RemoteException calling isInManagedCall().", e); |
| 1164 | } |
| 1165 | return false; |
| 1166 | } |
| 1167 | |
| 1168 | /** |
Yorke Lee | 2ae312e | 2014-09-12 17:58:48 -0700 | [diff] [blame] | 1169 | * Returns one of the following constants that represents the current state of Telecom: |
| 1170 | * |
| 1171 | * {@link TelephonyManager#CALL_STATE_RINGING} |
| 1172 | * {@link TelephonyManager#CALL_STATE_OFFHOOK} |
| 1173 | * {@link TelephonyManager#CALL_STATE_IDLE} |
Yorke Lee | 7c72c2d | 2014-10-28 14:12:02 -0700 | [diff] [blame] | 1174 | * |
| 1175 | * Note that this API does not require the |
| 1176 | * {@link android.Manifest.permission#READ_PHONE_STATE} permission. This is intentional, to |
| 1177 | * preserve the behavior of {@link TelephonyManager#getCallState()}, which also did not require |
| 1178 | * the permission. |
Tyler Gunn | 24e1833 | 2017-02-10 09:42:49 -0800 | [diff] [blame] | 1179 | * |
| 1180 | * Takes into consideration both managed and self-managed calls. |
| 1181 | * |
Yorke Lee | 2ae312e | 2014-09-12 17:58:48 -0700 | [diff] [blame] | 1182 | * @hide |
| 1183 | */ |
| 1184 | @SystemApi |
| 1185 | public int getCallState() { |
| 1186 | try { |
| 1187 | if (isServiceConnected()) { |
| 1188 | return getTelecomService().getCallState(); |
| 1189 | } |
| 1190 | } catch (RemoteException e) { |
| 1191 | Log.d(TAG, "RemoteException calling getCallState().", e); |
| 1192 | } |
| 1193 | return TelephonyManager.CALL_STATE_IDLE; |
| 1194 | } |
| 1195 | |
| 1196 | /** |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 1197 | * Returns whether there currently exists is a ringing incoming-call. |
| 1198 | * |
Tyler Gunn | 24e1833 | 2017-02-10 09:42:49 -0800 | [diff] [blame] | 1199 | * @return {@code true} if there is a managed or self-managed ringing call. |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 1200 | * @hide |
| 1201 | */ |
| 1202 | @SystemApi |
| 1203 | public boolean isRinging() { |
| 1204 | try { |
| 1205 | if (isServiceConnected()) { |
Svet Ganov | 16a1689 | 2015-04-16 10:32:04 -0700 | [diff] [blame] | 1206 | return getTelecomService().isRinging(mContext.getOpPackageName()); |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 1207 | } |
| 1208 | } catch (RemoteException e) { |
| 1209 | Log.e(TAG, "RemoteException attempting to get ringing state of phone app.", e); |
| 1210 | } |
| 1211 | return false; |
| 1212 | } |
| 1213 | |
| 1214 | /** |
Santos Cordon | 96efb48 | 2014-07-19 14:57:05 -0700 | [diff] [blame] | 1215 | * Ends an ongoing call. |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 1216 | * TODO: L-release - need to convert all invocations of ITelecomService#endCall to use this |
Santos Cordon | 96efb48 | 2014-07-19 14:57:05 -0700 | [diff] [blame] | 1217 | * method (clockwork & gearhead). |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 1218 | * @hide |
| 1219 | */ |
| 1220 | @SystemApi |
Jeff Sharkey | d86b8fe | 2017-06-02 17:36:26 -0600 | [diff] [blame^] | 1221 | @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE) |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 1222 | public boolean endCall() { |
| 1223 | try { |
| 1224 | if (isServiceConnected()) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 1225 | return getTelecomService().endCall(); |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 1226 | } |
| 1227 | } catch (RemoteException e) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 1228 | Log.e(TAG, "Error calling ITelecomService#endCall", e); |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 1229 | } |
| 1230 | return false; |
| 1231 | } |
| 1232 | |
| 1233 | /** |
| 1234 | * If there is a ringing incoming call, this method accepts the call on behalf of the user. |
Eugene Susla | cae3d3e | 2017-01-31 11:08:11 -0800 | [diff] [blame] | 1235 | * |
Tyler Gunn | 6676bb5 | 2015-10-23 14:39:49 -0700 | [diff] [blame] | 1236 | * If the incoming call is a video call, the call will be answered with the same video state as |
| 1237 | * the incoming call requests. This means, for example, that an incoming call requesting |
| 1238 | * {@link VideoProfile#STATE_BIDIRECTIONAL} will be answered, accepting that state. |
Eugene Susla | cae3d3e | 2017-01-31 11:08:11 -0800 | [diff] [blame] | 1239 | * |
| 1240 | * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE} or |
| 1241 | * {@link android.Manifest.permission#ANSWER_PHONE_CALLS} |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 1242 | */ |
Eugene Susla | cae3d3e | 2017-01-31 11:08:11 -0800 | [diff] [blame] | 1243 | //TODO: L-release - need to convert all invocation of ITelecmmService#answerRingingCall to use |
| 1244 | // this method (clockwork & gearhead). |
| 1245 | @RequiresPermission(anyOf = |
| 1246 | {Manifest.permission.ANSWER_PHONE_CALLS, Manifest.permission.MODIFY_PHONE_STATE}) |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 1247 | public void acceptRingingCall() { |
| 1248 | try { |
| 1249 | if (isServiceConnected()) { |
Eugene Susla | cae3d3e | 2017-01-31 11:08:11 -0800 | [diff] [blame] | 1250 | getTelecomService().acceptRingingCall(mContext.getPackageName()); |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 1251 | } |
| 1252 | } catch (RemoteException e) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 1253 | Log.e(TAG, "Error calling ITelecomService#acceptRingingCall", e); |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 1254 | } |
| 1255 | } |
| 1256 | |
| 1257 | /** |
Tyler Gunn | 6676bb5 | 2015-10-23 14:39:49 -0700 | [diff] [blame] | 1258 | * If there is a ringing incoming call, this method accepts the call on behalf of the user, |
| 1259 | * with the specified video state. |
| 1260 | * |
Eugene Susla | cae3d3e | 2017-01-31 11:08:11 -0800 | [diff] [blame] | 1261 | * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE} or |
| 1262 | * {@link android.Manifest.permission#ANSWER_PHONE_CALLS} |
| 1263 | * |
Tyler Gunn | 6676bb5 | 2015-10-23 14:39:49 -0700 | [diff] [blame] | 1264 | * @param videoState The desired video state to answer the call with. |
Tyler Gunn | 6676bb5 | 2015-10-23 14:39:49 -0700 | [diff] [blame] | 1265 | */ |
Eugene Susla | cae3d3e | 2017-01-31 11:08:11 -0800 | [diff] [blame] | 1266 | @RequiresPermission(anyOf = |
| 1267 | {Manifest.permission.ANSWER_PHONE_CALLS, Manifest.permission.MODIFY_PHONE_STATE}) |
Tyler Gunn | 6676bb5 | 2015-10-23 14:39:49 -0700 | [diff] [blame] | 1268 | public void acceptRingingCall(int videoState) { |
| 1269 | try { |
| 1270 | if (isServiceConnected()) { |
Eugene Susla | cae3d3e | 2017-01-31 11:08:11 -0800 | [diff] [blame] | 1271 | getTelecomService().acceptRingingCallWithVideoState( |
| 1272 | mContext.getPackageName(), videoState); |
Tyler Gunn | 6676bb5 | 2015-10-23 14:39:49 -0700 | [diff] [blame] | 1273 | } |
| 1274 | } catch (RemoteException e) { |
| 1275 | Log.e(TAG, "Error calling ITelecomService#acceptRingingCallWithVideoState", e); |
| 1276 | } |
| 1277 | } |
| 1278 | |
| 1279 | /** |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 1280 | * Silences the ringer if a ringing call exists. |
Yorke Lee | c61d1366 | 2015-09-21 17:25:25 -0700 | [diff] [blame] | 1281 | * |
| 1282 | * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE} |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 1283 | */ |
Yorke Lee | c61d1366 | 2015-09-21 17:25:25 -0700 | [diff] [blame] | 1284 | @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE) |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 1285 | public void silenceRinger() { |
| 1286 | try { |
| 1287 | if (isServiceConnected()) { |
Yorke Lee | f1a349b | 2015-04-29 16:16:50 -0700 | [diff] [blame] | 1288 | getTelecomService().silenceRinger(mContext.getOpPackageName()); |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 1289 | } |
| 1290 | } catch (RemoteException e) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 1291 | Log.e(TAG, "Error calling ITelecomService#silenceRinger", e); |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 1292 | } |
| 1293 | } |
| 1294 | |
Sailesh Nepal | 001bbbb | 2014-07-15 14:40:39 -0700 | [diff] [blame] | 1295 | /** |
| 1296 | * Returns whether TTY is supported on this device. |
| 1297 | * |
| 1298 | * @hide |
| 1299 | */ |
| 1300 | @SystemApi |
| 1301 | public boolean isTtySupported() { |
| 1302 | try { |
| 1303 | if (isServiceConnected()) { |
Svet Ganov | 16a1689 | 2015-04-16 10:32:04 -0700 | [diff] [blame] | 1304 | return getTelecomService().isTtySupported(mContext.getOpPackageName()); |
Sailesh Nepal | 001bbbb | 2014-07-15 14:40:39 -0700 | [diff] [blame] | 1305 | } |
| 1306 | } catch (RemoteException e) { |
| 1307 | Log.e(TAG, "RemoteException attempting to get TTY supported state.", e); |
| 1308 | } |
| 1309 | return false; |
| 1310 | } |
| 1311 | |
| 1312 | /** |
| 1313 | * Returns the current TTY mode of the device. For TTY to be on the user must enable it in |
Santos Cordon | 96efb48 | 2014-07-19 14:57:05 -0700 | [diff] [blame] | 1314 | * settings and have a wired headset plugged in. |
| 1315 | * Valid modes are: |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 1316 | * - {@link TelecomManager#TTY_MODE_OFF} |
| 1317 | * - {@link TelecomManager#TTY_MODE_FULL} |
| 1318 | * - {@link TelecomManager#TTY_MODE_HCO} |
| 1319 | * - {@link TelecomManager#TTY_MODE_VCO} |
Sailesh Nepal | 001bbbb | 2014-07-15 14:40:39 -0700 | [diff] [blame] | 1320 | * @hide |
| 1321 | */ |
| 1322 | public int getCurrentTtyMode() { |
| 1323 | try { |
| 1324 | if (isServiceConnected()) { |
Svet Ganov | 16a1689 | 2015-04-16 10:32:04 -0700 | [diff] [blame] | 1325 | return getTelecomService().getCurrentTtyMode(mContext.getOpPackageName()); |
Sailesh Nepal | 001bbbb | 2014-07-15 14:40:39 -0700 | [diff] [blame] | 1326 | } |
| 1327 | } catch (RemoteException e) { |
| 1328 | Log.e(TAG, "RemoteException attempting to get the current TTY mode.", e); |
| 1329 | } |
Evan Charlton | 1019719 | 2014-07-19 15:00:29 -0700 | [diff] [blame] | 1330 | return TTY_MODE_OFF; |
Sailesh Nepal | 001bbbb | 2014-07-15 14:40:39 -0700 | [diff] [blame] | 1331 | } |
| 1332 | |
Santos Cordon | 96efb48 | 2014-07-19 14:57:05 -0700 | [diff] [blame] | 1333 | /** |
| 1334 | * Registers a new incoming call. A {@link ConnectionService} should invoke this method when it |
Tyler Gunn | f503543 | 2017-01-09 09:43:12 -0800 | [diff] [blame] | 1335 | * has an incoming call. For managed {@link ConnectionService}s, the specified |
| 1336 | * {@link PhoneAccountHandle} must have been registered with {@link #registerPhoneAccount} and |
| 1337 | * the user must have enabled the corresponding {@link PhoneAccount}. This can be checked using |
| 1338 | * {@link #getPhoneAccount}. Self-managed {@link ConnectionService}s must have |
| 1339 | * {@link android.Manifest.permission#MANAGE_OWN_CALLS} to add a new incoming call. |
| 1340 | * <p> |
Tyler Gunn | dd8756d | 2017-03-13 18:15:15 -0700 | [diff] [blame] | 1341 | * The incoming call you are adding is assumed to have a video state of |
| 1342 | * {@link VideoProfile#STATE_AUDIO_ONLY}, unless the extra value |
| 1343 | * {@link #EXTRA_INCOMING_VIDEO_STATE} is specified. |
| 1344 | * <p> |
Tyler Gunn | f503543 | 2017-01-09 09:43:12 -0800 | [diff] [blame] | 1345 | * Once invoked, this method will cause the system to bind to the {@link ConnectionService} |
| 1346 | * associated with the {@link PhoneAccountHandle} and request additional information about the |
| 1347 | * call (See {@link ConnectionService#onCreateIncomingConnection}) before starting the incoming |
Brad Ebinger | ec0d334 | 2016-01-29 15:40:43 -0800 | [diff] [blame] | 1348 | * call UI. |
| 1349 | * <p> |
Tyler Gunn | f503543 | 2017-01-09 09:43:12 -0800 | [diff] [blame] | 1350 | * For a managed {@link ConnectionService}, a {@link SecurityException} will be thrown if either |
| 1351 | * the {@link PhoneAccountHandle} does not correspond to a registered {@link PhoneAccount} or |
| 1352 | * the associated {@link PhoneAccount} is not currently enabled by the user. |
| 1353 | * <p> |
| 1354 | * For a self-managed {@link ConnectionService}, a {@link SecurityException} will be thrown if |
| 1355 | * the {@link PhoneAccount} has {@link PhoneAccount#CAPABILITY_SELF_MANAGED} and the calling app |
| 1356 | * does not have {@link android.Manifest.permission#MANAGE_OWN_CALLS}. |
| 1357 | * |
Santos Cordon | 96efb48 | 2014-07-19 14:57:05 -0700 | [diff] [blame] | 1358 | * @param phoneAccount A {@link PhoneAccountHandle} registered with |
| 1359 | * {@link #registerPhoneAccount}. |
| 1360 | * @param extras A bundle that will be passed through to |
| 1361 | * {@link ConnectionService#onCreateIncomingConnection}. |
| 1362 | */ |
| 1363 | public void addNewIncomingCall(PhoneAccountHandle phoneAccount, Bundle extras) { |
| 1364 | try { |
| 1365 | if (isServiceConnected()) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 1366 | getTelecomService().addNewIncomingCall( |
Santos Cordon | 96efb48 | 2014-07-19 14:57:05 -0700 | [diff] [blame] | 1367 | phoneAccount, extras == null ? new Bundle() : extras); |
| 1368 | } |
| 1369 | } catch (RemoteException e) { |
| 1370 | Log.e(TAG, "RemoteException adding a new incoming call: " + phoneAccount, e); |
| 1371 | } |
| 1372 | } |
| 1373 | |
Nancy Chen | 0eb1e40 | 2014-08-21 22:52:29 -0700 | [diff] [blame] | 1374 | /** |
Yorke Lee | c3cf982 | 2014-10-02 09:38:39 -0700 | [diff] [blame] | 1375 | * Registers a new unknown call with Telecom. This can only be called by the system Telephony |
| 1376 | * service. This is invoked when Telephony detects a new unknown connection that was neither |
| 1377 | * a new incoming call, nor an user-initiated outgoing call. |
| 1378 | * |
| 1379 | * @param phoneAccount A {@link PhoneAccountHandle} registered with |
| 1380 | * {@link #registerPhoneAccount}. |
| 1381 | * @param extras A bundle that will be passed through to |
| 1382 | * {@link ConnectionService#onCreateIncomingConnection}. |
| 1383 | * @hide |
| 1384 | */ |
| 1385 | @SystemApi |
| 1386 | public void addNewUnknownCall(PhoneAccountHandle phoneAccount, Bundle extras) { |
| 1387 | try { |
| 1388 | if (isServiceConnected()) { |
| 1389 | getTelecomService().addNewUnknownCall( |
| 1390 | phoneAccount, extras == null ? new Bundle() : extras); |
| 1391 | } |
| 1392 | } catch (RemoteException e) { |
| 1393 | Log.e(TAG, "RemoteException adding a new unknown call: " + phoneAccount, e); |
| 1394 | } |
| 1395 | } |
| 1396 | |
| 1397 | /** |
Nancy Chen | 0eb1e40 | 2014-08-21 22:52:29 -0700 | [diff] [blame] | 1398 | * Processes the specified dial string as an MMI code. |
| 1399 | * MMI codes are any sequence of characters entered into the dialpad that contain a "*" or "#". |
| 1400 | * Some of these sequences launch special behavior through handled by Telephony. |
Nancy Chen | 95e8a67 | 2014-10-16 18:38:21 -0700 | [diff] [blame] | 1401 | * This method uses the default subscription. |
Nancy Chen | 0eb1e40 | 2014-08-21 22:52:29 -0700 | [diff] [blame] | 1402 | * <p> |
| 1403 | * Requires that the method-caller be set as the system dialer app. |
| 1404 | * </p> |
| 1405 | * |
Yorke Lee | c61d1366 | 2015-09-21 17:25:25 -0700 | [diff] [blame] | 1406 | * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE} |
| 1407 | * |
Nancy Chen | 0eb1e40 | 2014-08-21 22:52:29 -0700 | [diff] [blame] | 1408 | * @param dialString The digits to dial. |
| 1409 | * @return True if the digits were processed as an MMI code, false otherwise. |
| 1410 | */ |
Yorke Lee | c61d1366 | 2015-09-21 17:25:25 -0700 | [diff] [blame] | 1411 | @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE) |
Nancy Chen | 0eb1e40 | 2014-08-21 22:52:29 -0700 | [diff] [blame] | 1412 | public boolean handleMmi(String dialString) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 1413 | ITelecomService service = getTelecomService(); |
Nancy Chen | 0eb1e40 | 2014-08-21 22:52:29 -0700 | [diff] [blame] | 1414 | if (service != null) { |
| 1415 | try { |
Yorke Lee | f1a349b | 2015-04-29 16:16:50 -0700 | [diff] [blame] | 1416 | return service.handlePinMmi(dialString, mContext.getOpPackageName()); |
Nancy Chen | 0eb1e40 | 2014-08-21 22:52:29 -0700 | [diff] [blame] | 1417 | } catch (RemoteException e) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 1418 | Log.e(TAG, "Error calling ITelecomService#handlePinMmi", e); |
Nancy Chen | 0eb1e40 | 2014-08-21 22:52:29 -0700 | [diff] [blame] | 1419 | } |
| 1420 | } |
| 1421 | return false; |
| 1422 | } |
| 1423 | |
| 1424 | /** |
Nancy Chen | 95e8a67 | 2014-10-16 18:38:21 -0700 | [diff] [blame] | 1425 | * Processes the specified dial string as an MMI code. |
| 1426 | * MMI codes are any sequence of characters entered into the dialpad that contain a "*" or "#". |
| 1427 | * Some of these sequences launch special behavior through handled by Telephony. |
| 1428 | * <p> |
| 1429 | * Requires that the method-caller be set as the system dialer app. |
| 1430 | * </p> |
| 1431 | * |
Yorke Lee | c61d1366 | 2015-09-21 17:25:25 -0700 | [diff] [blame] | 1432 | * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE} |
| 1433 | * |
Nancy Chen | 95e8a67 | 2014-10-16 18:38:21 -0700 | [diff] [blame] | 1434 | * @param accountHandle The handle for the account the MMI code should apply to. |
| 1435 | * @param dialString The digits to dial. |
| 1436 | * @return True if the digits were processed as an MMI code, false otherwise. |
Nancy Chen | 95e8a67 | 2014-10-16 18:38:21 -0700 | [diff] [blame] | 1437 | */ |
Yorke Lee | c61d1366 | 2015-09-21 17:25:25 -0700 | [diff] [blame] | 1438 | @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE) |
Yorke Lee | 0604427 | 2015-04-14 15:16:59 -0700 | [diff] [blame] | 1439 | public boolean handleMmi(String dialString, PhoneAccountHandle accountHandle) { |
Nancy Chen | 95e8a67 | 2014-10-16 18:38:21 -0700 | [diff] [blame] | 1440 | ITelecomService service = getTelecomService(); |
| 1441 | if (service != null) { |
| 1442 | try { |
Yorke Lee | f1a349b | 2015-04-29 16:16:50 -0700 | [diff] [blame] | 1443 | return service.handlePinMmiForPhoneAccount(accountHandle, dialString, |
| 1444 | mContext.getOpPackageName()); |
Nancy Chen | 95e8a67 | 2014-10-16 18:38:21 -0700 | [diff] [blame] | 1445 | } catch (RemoteException e) { |
| 1446 | Log.e(TAG, "Error calling ITelecomService#handlePinMmi", e); |
| 1447 | } |
| 1448 | } |
| 1449 | return false; |
| 1450 | } |
| 1451 | |
| 1452 | /** |
Yorke Lee | c61d1366 | 2015-09-21 17:25:25 -0700 | [diff] [blame] | 1453 | * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE} |
| 1454 | * |
Nancy Chen | b2299c1 | 2014-10-29 18:22:11 -0700 | [diff] [blame] | 1455 | * @param accountHandle The handle for the account to derive an adn query URI for or |
| 1456 | * {@code null} to return a URI which will use the default account. |
| 1457 | * @return The URI (with the content:// scheme) specific to the specified {@link PhoneAccount} |
| 1458 | * for the the content retrieve. |
| 1459 | */ |
Yorke Lee | c61d1366 | 2015-09-21 17:25:25 -0700 | [diff] [blame] | 1460 | @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE) |
Nancy Chen | b2299c1 | 2014-10-29 18:22:11 -0700 | [diff] [blame] | 1461 | public Uri getAdnUriForPhoneAccount(PhoneAccountHandle accountHandle) { |
| 1462 | ITelecomService service = getTelecomService(); |
| 1463 | if (service != null && accountHandle != null) { |
| 1464 | try { |
Yorke Lee | f1a349b | 2015-04-29 16:16:50 -0700 | [diff] [blame] | 1465 | return service.getAdnUriForPhoneAccount(accountHandle, mContext.getOpPackageName()); |
Nancy Chen | b2299c1 | 2014-10-29 18:22:11 -0700 | [diff] [blame] | 1466 | } catch (RemoteException e) { |
| 1467 | Log.e(TAG, "Error calling ITelecomService#getAdnUriForPhoneAccount", e); |
| 1468 | } |
| 1469 | } |
| 1470 | return Uri.parse("content://icc/adn"); |
| 1471 | } |
| 1472 | |
| 1473 | /** |
Nancy Chen | 0eb1e40 | 2014-08-21 22:52:29 -0700 | [diff] [blame] | 1474 | * Removes the missed-call notification if one is present. |
| 1475 | * <p> |
| 1476 | * Requires that the method-caller be set as the system dialer app. |
| 1477 | * </p> |
Yorke Lee | c61d1366 | 2015-09-21 17:25:25 -0700 | [diff] [blame] | 1478 | * |
| 1479 | * Requires permission: {@link android.Manifest.permission#MODIFY_PHONE_STATE} |
Nancy Chen | 0eb1e40 | 2014-08-21 22:52:29 -0700 | [diff] [blame] | 1480 | */ |
Yorke Lee | c61d1366 | 2015-09-21 17:25:25 -0700 | [diff] [blame] | 1481 | @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE) |
Nancy Chen | 0eb1e40 | 2014-08-21 22:52:29 -0700 | [diff] [blame] | 1482 | public void cancelMissedCallsNotification() { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 1483 | ITelecomService service = getTelecomService(); |
Nancy Chen | 0eb1e40 | 2014-08-21 22:52:29 -0700 | [diff] [blame] | 1484 | if (service != null) { |
| 1485 | try { |
Yorke Lee | f1a349b | 2015-04-29 16:16:50 -0700 | [diff] [blame] | 1486 | service.cancelMissedCallsNotification(mContext.getOpPackageName()); |
Nancy Chen | 0eb1e40 | 2014-08-21 22:52:29 -0700 | [diff] [blame] | 1487 | } catch (RemoteException e) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 1488 | Log.e(TAG, "Error calling ITelecomService#cancelMissedCallsNotification", e); |
Nancy Chen | 0eb1e40 | 2014-08-21 22:52:29 -0700 | [diff] [blame] | 1489 | } |
| 1490 | } |
| 1491 | } |
| 1492 | |
| 1493 | /** |
| 1494 | * Brings the in-call screen to the foreground if there is an ongoing call. If there is |
| 1495 | * currently no ongoing call, then this method does nothing. |
| 1496 | * <p> |
| 1497 | * Requires that the method-caller be set as the system dialer app or have the |
| 1498 | * {@link android.Manifest.permission#READ_PHONE_STATE} permission. |
| 1499 | * </p> |
| 1500 | * |
| 1501 | * @param showDialpad Brings up the in-call dialpad as part of showing the in-call screen. |
| 1502 | */ |
Yorke Lee | c61d1366 | 2015-09-21 17:25:25 -0700 | [diff] [blame] | 1503 | @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE) |
Nancy Chen | 0eb1e40 | 2014-08-21 22:52:29 -0700 | [diff] [blame] | 1504 | public void showInCallScreen(boolean showDialpad) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 1505 | ITelecomService service = getTelecomService(); |
Nancy Chen | 0eb1e40 | 2014-08-21 22:52:29 -0700 | [diff] [blame] | 1506 | if (service != null) { |
| 1507 | try { |
Svet Ganov | 16a1689 | 2015-04-16 10:32:04 -0700 | [diff] [blame] | 1508 | service.showInCallScreen(showDialpad, mContext.getOpPackageName()); |
Nancy Chen | 0eb1e40 | 2014-08-21 22:52:29 -0700 | [diff] [blame] | 1509 | } catch (RemoteException e) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 1510 | Log.e(TAG, "Error calling ITelecomService#showCallScreen", e); |
Nancy Chen | 0eb1e40 | 2014-08-21 22:52:29 -0700 | [diff] [blame] | 1511 | } |
| 1512 | } |
| 1513 | } |
| 1514 | |
Yorke Lee | 3e56ba1 | 2015-04-23 12:32:36 -0700 | [diff] [blame] | 1515 | /** |
| 1516 | * Places a new outgoing call to the provided address using the system telecom service with |
| 1517 | * the specified extras. |
| 1518 | * |
| 1519 | * This method is equivalent to placing an outgoing call using {@link Intent#ACTION_CALL}, |
| 1520 | * except that the outgoing call will always be sent via the system telecom service. If |
| 1521 | * method-caller is either the user selected default dialer app or preloaded system dialer |
| 1522 | * app, then emergency calls will also be allowed. |
| 1523 | * |
Tyler Gunn | f503543 | 2017-01-09 09:43:12 -0800 | [diff] [blame] | 1524 | * Placing a call via a managed {@link ConnectionService} requires permission: |
| 1525 | * {@link android.Manifest.permission#CALL_PHONE} |
Yorke Lee | 3e56ba1 | 2015-04-23 12:32:36 -0700 | [diff] [blame] | 1526 | * |
| 1527 | * Usage example: |
| 1528 | * <pre> |
| 1529 | * Uri uri = Uri.fromParts("tel", "12345", null); |
| 1530 | * Bundle extras = new Bundle(); |
| 1531 | * extras.putBoolean(TelecomManager.EXTRA_START_CALL_WITH_SPEAKERPHONE, true); |
| 1532 | * telecomManager.placeCall(uri, extras); |
| 1533 | * </pre> |
| 1534 | * |
Santos Cordon | 7a060d5 | 2015-06-19 14:52:04 -0700 | [diff] [blame] | 1535 | * The following keys are supported in the supplied extras. |
| 1536 | * <ul> |
| 1537 | * <li>{@link #EXTRA_OUTGOING_CALL_EXTRAS}</li> |
| 1538 | * <li>{@link #EXTRA_PHONE_ACCOUNT_HANDLE}</li> |
| 1539 | * <li>{@link #EXTRA_START_CALL_WITH_SPEAKERPHONE}</li> |
| 1540 | * <li>{@link #EXTRA_START_CALL_WITH_VIDEO_STATE}</li> |
| 1541 | * </ul> |
Tyler Gunn | f503543 | 2017-01-09 09:43:12 -0800 | [diff] [blame] | 1542 | * <p> |
| 1543 | * An app which implements the self-managed {@link ConnectionService} API uses |
| 1544 | * {@link #placeCall(Uri, Bundle)} to inform Telecom of a new outgoing call. A self-managed |
| 1545 | * {@link ConnectionService} must include {@link #EXTRA_PHONE_ACCOUNT_HANDLE} to specify its |
| 1546 | * associated {@link android.telecom.PhoneAccountHandle}. |
| 1547 | * |
| 1548 | * Self-managed {@link ConnectionService}s require permission |
| 1549 | * {@link android.Manifest.permission#MANAGE_OWN_CALLS}. |
Santos Cordon | 7a060d5 | 2015-06-19 14:52:04 -0700 | [diff] [blame] | 1550 | * |
Yorke Lee | 3e56ba1 | 2015-04-23 12:32:36 -0700 | [diff] [blame] | 1551 | * @param address The address to make the call to. |
| 1552 | * @param extras Bundle of extras to use with the call. |
| 1553 | */ |
Tyler Gunn | f503543 | 2017-01-09 09:43:12 -0800 | [diff] [blame] | 1554 | @RequiresPermission(anyOf = {android.Manifest.permission.CALL_PHONE, |
| 1555 | android.Manifest.permission.MANAGE_OWN_CALLS}) |
Yorke Lee | 3e56ba1 | 2015-04-23 12:32:36 -0700 | [diff] [blame] | 1556 | public void placeCall(Uri address, Bundle extras) { |
| 1557 | ITelecomService service = getTelecomService(); |
| 1558 | if (service != null) { |
Yorke Lee | a5d5c1d | 2015-05-05 16:25:55 -0700 | [diff] [blame] | 1559 | if (address == null) { |
| 1560 | Log.w(TAG, "Cannot place call to empty address."); |
| 1561 | } |
Yorke Lee | 3e56ba1 | 2015-04-23 12:32:36 -0700 | [diff] [blame] | 1562 | try { |
Yorke Lee | a5d5c1d | 2015-05-05 16:25:55 -0700 | [diff] [blame] | 1563 | service.placeCall(address, extras == null ? new Bundle() : extras, |
| 1564 | mContext.getOpPackageName()); |
Yorke Lee | 3e56ba1 | 2015-04-23 12:32:36 -0700 | [diff] [blame] | 1565 | } catch (RemoteException e) { |
| 1566 | Log.e(TAG, "Error calling ITelecomService#placeCall", e); |
| 1567 | } |
| 1568 | } |
| 1569 | } |
| 1570 | |
Santos Cordon | 91371dc | 2015-05-08 13:52:09 -0700 | [diff] [blame] | 1571 | /** |
| 1572 | * Enables and disables specified phone account. |
| 1573 | * |
| 1574 | * @param handle Handle to the phone account. |
| 1575 | * @param isEnabled Enable state of the phone account. |
| 1576 | * @hide |
| 1577 | */ |
| 1578 | @SystemApi |
| 1579 | public void enablePhoneAccount(PhoneAccountHandle handle, boolean isEnabled) { |
| 1580 | ITelecomService service = getTelecomService(); |
| 1581 | if (service != null) { |
| 1582 | try { |
| 1583 | service.enablePhoneAccount(handle, isEnabled); |
| 1584 | } catch (RemoteException e) { |
| 1585 | Log.e(TAG, "Error enablePhoneAbbount", e); |
| 1586 | } |
| 1587 | } |
| 1588 | } |
| 1589 | |
Hall Liu | 0464b9b | 2016-01-12 15:32:58 -0800 | [diff] [blame] | 1590 | /** |
| 1591 | * Dumps telecom analytics for uploading. |
| 1592 | * |
| 1593 | * @return |
| 1594 | * @hide |
| 1595 | */ |
| 1596 | @SystemApi |
| 1597 | @RequiresPermission(Manifest.permission.DUMP) |
Hall Liu | 057def5 | 2016-05-05 17:17:07 -0700 | [diff] [blame] | 1598 | public TelecomAnalytics dumpAnalytics() { |
Hall Liu | 0464b9b | 2016-01-12 15:32:58 -0800 | [diff] [blame] | 1599 | ITelecomService service = getTelecomService(); |
Hall Liu | 057def5 | 2016-05-05 17:17:07 -0700 | [diff] [blame] | 1600 | TelecomAnalytics result = null; |
Hall Liu | 0464b9b | 2016-01-12 15:32:58 -0800 | [diff] [blame] | 1601 | if (service != null) { |
| 1602 | try { |
| 1603 | result = service.dumpCallAnalytics(); |
| 1604 | } catch (RemoteException e) { |
| 1605 | Log.e(TAG, "Error dumping call analytics", e); |
| 1606 | } |
| 1607 | } |
| 1608 | return result; |
| 1609 | } |
| 1610 | |
Abhijith Shastry | 1908cb84 | 2016-02-02 11:10:19 -0800 | [diff] [blame] | 1611 | /** |
Abhijith Shastry | a26fe99 | 2016-02-29 11:40:24 -0800 | [diff] [blame] | 1612 | * Creates the {@link Intent} which can be used with {@link Context#startActivity(Intent)} to |
| 1613 | * launch the activity to manage blocked numbers. |
Abhijith Shastry | ec30d2f | 2016-03-04 16:46:08 -0800 | [diff] [blame] | 1614 | * <p> The activity will display the UI to manage blocked numbers only if |
Abhijith Shastry | a26fe99 | 2016-02-29 11:40:24 -0800 | [diff] [blame] | 1615 | * {@link android.provider.BlockedNumberContract#canCurrentUserBlockNumbers(Context)} returns |
| 1616 | * {@code true} for the current user. |
| 1617 | */ |
| 1618 | public Intent createManageBlockedNumbersIntent() { |
| 1619 | ITelecomService service = getTelecomService(); |
| 1620 | Intent result = null; |
| 1621 | if (service != null) { |
| 1622 | try { |
| 1623 | result = service.createManageBlockedNumbersIntent(); |
| 1624 | } catch (RemoteException e) { |
| 1625 | Log.e(TAG, "Error calling ITelecomService#createManageBlockedNumbersIntent", e); |
| 1626 | } |
| 1627 | } |
| 1628 | return result; |
| 1629 | } |
| 1630 | |
Tyler Gunn | f503543 | 2017-01-09 09:43:12 -0800 | [diff] [blame] | 1631 | /** |
| 1632 | * Determines whether Telecom would permit an incoming call to be added via the |
| 1633 | * {@link #addNewIncomingCall(PhoneAccountHandle, Bundle)} API for the specified |
| 1634 | * {@link PhoneAccountHandle}. |
| 1635 | * <p> |
| 1636 | * A {@link ConnectionService} may not add a call for the specified {@link PhoneAccountHandle} |
| 1637 | * in the following situations: |
| 1638 | * <ul> |
| 1639 | * <li>{@link PhoneAccount} does not have property |
| 1640 | * {@link PhoneAccount#CAPABILITY_SELF_MANAGED} set (i.e. it is a managed |
| 1641 | * {@link ConnectionService}), and the active or held call limit has |
| 1642 | * been reached.</li> |
| 1643 | * <li>There is an ongoing emergency call.</li> |
| 1644 | * </ul> |
| 1645 | * |
| 1646 | * @param phoneAccountHandle The {@link PhoneAccountHandle} the call will be added for. |
| 1647 | * @return {@code true} if telecom will permit an incoming call to be added, {@code false} |
| 1648 | * otherwise. |
| 1649 | */ |
| 1650 | public boolean isIncomingCallPermitted(PhoneAccountHandle phoneAccountHandle) { |
Tyler Gunn | 44e0191 | 2017-01-31 10:49:05 -0800 | [diff] [blame] | 1651 | if (phoneAccountHandle == null) { |
| 1652 | return false; |
| 1653 | } |
| 1654 | |
Tyler Gunn | f503543 | 2017-01-09 09:43:12 -0800 | [diff] [blame] | 1655 | ITelecomService service = getTelecomService(); |
| 1656 | if (service != null) { |
| 1657 | try { |
| 1658 | return service.isIncomingCallPermitted(phoneAccountHandle); |
| 1659 | } catch (RemoteException e) { |
| 1660 | Log.e(TAG, "Error isIncomingCallPermitted", e); |
| 1661 | } |
| 1662 | } |
| 1663 | return false; |
| 1664 | } |
| 1665 | |
| 1666 | /** |
| 1667 | * Determines whether Telecom would permit an outgoing call to be placed via the |
| 1668 | * {@link #placeCall(Uri, Bundle)} API for the specified {@link PhoneAccountHandle}. |
| 1669 | * <p> |
| 1670 | * A {@link ConnectionService} may not place a call for the specified {@link PhoneAccountHandle} |
| 1671 | * in the following situations: |
| 1672 | * <ul> |
| 1673 | * <li>{@link PhoneAccount} does not have property |
| 1674 | * {@link PhoneAccount#CAPABILITY_SELF_MANAGED} set (i.e. it is a managed |
| 1675 | * {@link ConnectionService}), and the active, held or ringing call limit has |
| 1676 | * been reached.</li> |
| 1677 | * <li>{@link PhoneAccount} has property {@link PhoneAccount#CAPABILITY_SELF_MANAGED} set |
| 1678 | * (i.e. it is a self-managed {@link ConnectionService} and there is an ongoing call in |
| 1679 | * another {@link ConnectionService}.</li> |
| 1680 | * <li>There is an ongoing emergency call.</li> |
| 1681 | * </ul> |
| 1682 | * |
| 1683 | * @param phoneAccountHandle The {@link PhoneAccountHandle} the call will be added for. |
| 1684 | * @return {@code true} if telecom will permit an outgoing call to be placed, {@code false} |
| 1685 | * otherwise. |
| 1686 | */ |
| 1687 | public boolean isOutgoingCallPermitted(PhoneAccountHandle phoneAccountHandle) { |
| 1688 | ITelecomService service = getTelecomService(); |
| 1689 | if (service != null) { |
| 1690 | try { |
| 1691 | return service.isOutgoingCallPermitted(phoneAccountHandle); |
| 1692 | } catch (RemoteException e) { |
| 1693 | Log.e(TAG, "Error isOutgoingCallPermitted", e); |
| 1694 | } |
| 1695 | } |
| 1696 | return false; |
| 1697 | } |
| 1698 | |
| 1699 | |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 1700 | private ITelecomService getTelecomService() { |
Hall Liu | e1bc2ec | 2015-10-09 15:58:37 -0700 | [diff] [blame] | 1701 | if (mTelecomServiceOverride != null) { |
| 1702 | return mTelecomServiceOverride; |
| 1703 | } |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 1704 | return ITelecomService.Stub.asInterface(ServiceManager.getService(Context.TELECOM_SERVICE)); |
Santos Cordon | 6c7a388 | 2014-06-25 15:30:08 -0700 | [diff] [blame] | 1705 | } |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 1706 | |
| 1707 | private boolean isServiceConnected() { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 1708 | boolean isConnected = getTelecomService() != null; |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 1709 | if (!isConnected) { |
Tyler Gunn | ef9f6f9 | 2014-09-12 22:16:17 -0700 | [diff] [blame] | 1710 | Log.w(TAG, "Telecom Service not found."); |
Santos Cordon | 9eb4593 | 2014-06-27 12:28:43 -0700 | [diff] [blame] | 1711 | } |
| 1712 | return isConnected; |
| 1713 | } |
Evan Charlton | 235c159 | 2014-09-05 15:41:23 +0000 | [diff] [blame] | 1714 | } |