aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Ebinger <breadley@google.com>2018-06-11 19:56:07 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-06-11 19:56:07 +0000
commit36db0d2f572fd37848f53518c9b3bd36594b410b (patch)
tree3549accef4395ca13ea7c9da5c86fe3b8408c0db
parentb84d40e2c61275a9effe5191ba6e598cd5c7a9b4 (diff)
parent6d9af3b448a8f06e79dfdb3248a1b6ed1d467194 (diff)
downloadims-36db0d2f572fd37848f53518c9b3bd36594b410b.tar.gz
Merge "Update docs for setUiTtyMode and using Message across IPC"
-rw-r--r--src/java/com/android/ims/ImsManager.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/java/com/android/ims/ImsManager.java b/src/java/com/android/ims/ImsManager.java
index 52d523b9..3ad6c72e 100644
--- a/src/java/com/android/ims/ImsManager.java
+++ b/src/java/com/android/ims/ImsManager.java
@@ -1875,6 +1875,15 @@ public class ImsManager {
/**
* Sets the UI TTY mode. This is the preferred TTY mode that the user sets in the call
* settings screen.
+ * @param uiTtyMode TTY Mode, valid options are:
+ * - {@link com.android.internal.telephony.Phone#TTY_MODE_OFF}
+ * - {@link com.android.internal.telephony.Phone#TTY_MODE_FULL}
+ * - {@link com.android.internal.telephony.Phone#TTY_MODE_HCO}
+ * - {@link com.android.internal.telephony.Phone#TTY_MODE_VCO}
+ * @param onComplete A Message that will be called by the ImsService when it has completed this
+ * operation or null if not waiting for an async response. The Message must contain a
+ * valid {@link Message#replyTo} {@link android.os.Messenger}, since it will be passed
+ * through Binder to another process.
*/
public void setUiTTYMode(Context context, int uiTtyMode, Message onComplete)
throws ImsException {