diff options
author | Tyler Gunn <tgunn@google.com> | 2015-07-27 16:06:16 -0700 |
---|---|---|
committer | Tyler Gunn <tgunn@google.com> | 2015-07-27 16:06:16 -0700 |
commit | 65a3d3430aa0b32ec44092becc18cb68feea6b61 (patch) | |
tree | 263e77433b94151a7826cdbe10303345b2e801d8 /telecomm/java/android/telecom | |
parent | 4629f1c58c00480b0dbd5a541a26b703b0770bf4 (diff) | |
download | frameworks_base-65a3d3430aa0b32ec44092becc18cb68feea6b61.zip frameworks_base-65a3d3430aa0b32ec44092becc18cb68feea6b61.tar.gz frameworks_base-65a3d3430aa0b32ec44092becc18cb68feea6b61.tar.bz2 |
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
Diffstat (limited to 'telecomm/java/android/telecom')
-rw-r--r-- | telecomm/java/android/telecom/PhoneAccount.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/telecomm/java/android/telecom/PhoneAccount.java b/telecomm/java/android/telecom/PhoneAccount.java index df6fa2e..cdb0bf2 100644 --- a/telecomm/java/android/telecom/PhoneAccount.java +++ b/telecomm/java/android/telecom/PhoneAccount.java @@ -112,6 +112,15 @@ public final class PhoneAccount implements Parcelable { 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. + * <p> + * See {@link #getCapabilities} + */ + public static final int CAPABILITY_CALL_SUBJECT = 0x40; + + /** * URI scheme for telephone number URIs. */ public static final String SCHEME_TEL = "tel"; |