AbstractInputMethodService.AbstractInputMethodSessionImpl.DisplayCompletions Method
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.
Called by a text editor that performs auto completion, to tell the input method about the completions it has available.
[Android.Runtime.Register("displayCompletions", "([Landroid/view/inputmethod/CompletionInfo;)V", "GetDisplayCompletions_arrayLandroid_view_inputmethod_CompletionInfo_Handler")]
public abstract void DisplayCompletions (Android.Views.InputMethods.CompletionInfo[]? completions);
[<Android.Runtime.Register("displayCompletions", "([Landroid/view/inputmethod/CompletionInfo;)V", "GetDisplayCompletions_arrayLandroid_view_inputmethod_CompletionInfo_Handler")>]
abstract member DisplayCompletions : Android.Views.InputMethods.CompletionInfo[] -> unit
Parameters
- completions
- CompletionInfo[]
Array of text completions that are available, starting with the best. If this array is null, any existing completions will be removed.
Implements
- Attributes
Remarks
Called by a text editor that performs auto completion, to tell the input method about the completions it has available. This can be used by the input method to display them to the user to select the text to be inserted.
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.