aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Ebinger <breadley@google.com>2018-04-11 11:27:50 -0700
committerBrad Ebinger <breadley@google.com>2018-04-11 14:21:51 -0700
commitb19b283163202f78946e9a2e7a322ad826a0fc81 (patch)
tree115b3e6c2a69584128962dfe9a2897c7b38a07b2
parent23916134059344b22fc52eaf9cec2f6cc3edee07 (diff)
downloadims-b19b283163202f78946e9a2e7a322ad826a0fc81.tar.gz
Update docs for setUiTtyMode and using Message across IPC
Bug: 77870347 Test: Manual Change-Id: I9d3abff727e57dacab2e339a094545de9c46ed68
-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 e7a857d1..1502089c 100644
--- a/src/java/com/android/ims/ImsManager.java
+++ b/src/java/com/android/ims/ImsManager.java
@@ -1894,6 +1894,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 {