aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Ebinger <breadley@google.com>2018-04-14 17:29:12 -0700
committerandroid-build-merger <android-build-merger@google.com>2018-04-14 17:29:12 -0700
commit30f1c201bf988a18bbf690c37e6772654f088283 (patch)
tree3d601cc6590a53d07717621ea3f8c5ea4eaf68d2
parenta8a434538a90862ffb0b1c12b6bee6f4ca5df43c (diff)
parentb19b283163202f78946e9a2e7a322ad826a0fc81 (diff)
downloadims-30f1c201bf988a18bbf690c37e6772654f088283.tar.gz
Update docs for setUiTtyMode and using Message across IPC
am: b19b283163 Change-Id: I2d45522a198e9e94d02d54004991a9609addda2e
-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 a3c6ad2d..0e0adfb7 100644
--- a/src/java/com/android/ims/ImsManager.java
+++ b/src/java/com/android/ims/ImsManager.java
@@ -1895,6 +1895,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 {