Call.CannedTextResponses Property
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.
Obtains a list of canned, pre-configured message responses to present to the user as
ways of rejecting an incoming Call
using via a text message.
public System.Collections.Generic.IList<string>? CannedTextResponses { [Android.Runtime.Register("getCannedTextResponses", "()Ljava/util/List;", "", ApiSince=23)] get; }
[<get: Android.Runtime.Register("getCannedTextResponses", "()Ljava/util/List;", "", ApiSince=23)>]
member this.CannedTextResponses : System.Collections.Generic.IList<string>
Property Value
A list of canned text message responses.
- Attributes
Remarks
Obtains a list of canned, pre-configured message responses to present to the user as ways of rejecting an incoming Call
using via a text message.
<em>Note:</em> Since canned responses may be loaded from the file system, they are not guaranteed to be present when this Call
is first added to the InCallService
via InCallService#onCallAdded(Call)
. The callback Call.Callback#onCannedTextResponsesLoaded(Call, List)
will be called when/if canned responses for the call become available.
Java documentation for android.telecom.Call.getCannedTextResponses()
.
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.