PhoneAccount.ExtraCallSubjectCharacterEncoding Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
PhoneAccount
extras key (see PhoneAccount#getExtras()
) which determines the
character encoding to be used when determining the length of messages.
[Android.Runtime.Register("EXTRA_CALL_SUBJECT_CHARACTER_ENCODING", ApiSince=24)]
public const string ExtraCallSubjectCharacterEncoding;
[<Android.Runtime.Register("EXTRA_CALL_SUBJECT_CHARACTER_ENCODING", ApiSince=24)>]
val mutable ExtraCallSubjectCharacterEncoding : string
Field Value
Implements
- Attributes
Remarks
PhoneAccount
extras key (see PhoneAccount#getExtras()
) which determines the character encoding to be used when determining the length of messages. The user interface can use this when determining the number of characters the user may type in a call subject. If empty-string, the call subject message size limit will be enforced on a 1:1 basis. That is, each character will count towards the messages size limit as a single character. If a character encoding is specified, the message size limit will be based on the number of bytes in the message per the specified encoding. See #EXTRA_CALL_SUBJECT_MAX_LENGTH
for more information on the call subject maximum length.
Java documentation for android.telecom.PhoneAccount.EXTRA_CALL_SUBJECT_CHARACTER_ENCODING
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.