From 65a3d3430aa0b32ec44092becc18cb68feea6b61 Mon Sep 17 00:00:00 2001 From: Tyler Gunn Date: Mon, 27 Jul 2015 16:06:16 -0700 Subject: Add "Call subject" capability to phone accounts. Indicates whether the phone account supports displaying a subject line for incoming calls and sending a subject line for outgoing calls. Supports the IMS Instant Lettering feature. Bug: 22769741 Change-Id: I6d803dc288bfd6d4e356310a8d10d5468c5d4186 --- api/current.txt | 1 + api/system-current.txt | 1 + telecomm/java/android/telecom/PhoneAccount.java | 9 +++++++++ 3 files changed, 11 insertions(+) diff --git a/api/current.txt b/api/current.txt index 7c5115fc6eb3..406a6192be70 100644 --- a/api/current.txt +++ b/api/current.txt @@ -30283,6 +30283,7 @@ package android.telecom { method public android.telecom.PhoneAccount.Builder toBuilder(); method public void writeToParcel(android.os.Parcel, int); field public static final int CAPABILITY_CALL_PROVIDER = 2; // 0x2 + field public static final int CAPABILITY_CALL_SUBJECT = 64; // 0x40 field public static final int CAPABILITY_CONNECTION_MANAGER = 1; // 0x1 field public static final int CAPABILITY_PLACE_EMERGENCY_CALLS = 16; // 0x10 field public static final int CAPABILITY_SIM_SUBSCRIPTION = 4; // 0x4 diff --git a/api/system-current.txt b/api/system-current.txt index a08a0114c5eb..978a517748c0 100644 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -32491,6 +32491,7 @@ package android.telecom { method public android.telecom.PhoneAccount.Builder toBuilder(); method public void writeToParcel(android.os.Parcel, int); field public static final int CAPABILITY_CALL_PROVIDER = 2; // 0x2 + field public static final int CAPABILITY_CALL_SUBJECT = 64; // 0x40 field public static final int CAPABILITY_CONNECTION_MANAGER = 1; // 0x1 field public static final int CAPABILITY_MULTI_USER = 32; // 0x20 field public static final int CAPABILITY_PLACE_EMERGENCY_CALLS = 16; // 0x10 diff --git a/telecomm/java/android/telecom/PhoneAccount.java b/telecomm/java/android/telecom/PhoneAccount.java index df6fa2e1b391..cdb0bf257baa 100644 --- a/telecomm/java/android/telecom/PhoneAccount.java +++ b/telecomm/java/android/telecom/PhoneAccount.java @@ -111,6 +111,15 @@ public final class PhoneAccount implements Parcelable { @SystemApi public static final int CAPABILITY_MULTI_USER = 0x20; + /** + * Flag indicating that this {@code PhoneAccount} supports a subject for Calls. This means a + * caller is able to specify a short subject line for an outgoing call. A capable receiving + * device displays the call subject on the incoming call screen. + *

+ * See {@link #getCapabilities} + */ + public static final int CAPABILITY_CALL_SUBJECT = 0x40; + /** * URI scheme for telephone number URIs. */ -- cgit v1.2.3-59-g8ed1b