InputMethodService.OnDisplayCompletions(CompletionInfo[]) 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 when the application has reported auto-completion candidates that it would like to have the input method displayed.
[Android.Runtime.Register("onDisplayCompletions", "([Landroid/view/inputmethod/CompletionInfo;)V", "GetOnDisplayCompletions_arrayLandroid_view_inputmethod_CompletionInfo_Handler")]
public virtual void OnDisplayCompletions (Android.Views.InputMethods.CompletionInfo[]? completions);
[<Android.Runtime.Register("onDisplayCompletions", "([Landroid/view/inputmethod/CompletionInfo;)V", "GetOnDisplayCompletions_arrayLandroid_view_inputmethod_CompletionInfo_Handler")>]
abstract member OnDisplayCompletions : Android.Views.InputMethods.CompletionInfo[] -> unit
override this.OnDisplayCompletions : Android.Views.InputMethods.CompletionInfo[] -> unit
Parameters
- completions
- CompletionInfo[]
- Attributes
Remarks
Called when the application has reported auto-completion candidates that it would like to have the input method displayed. Typically these are only used when an input method is running in full-screen mode, since otherwise the user can see and interact with the pop-up window of completions shown by the application.
The default implementation here does nothing.
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.