Aracılığıyla paylaş


InputMethodService.OnDisplayCompletions(CompletionInfo[]) Method

Definition

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.

Java documentation for android.inputmethodservice.InputMethodService.onDisplayCompletions(android.view.inputmethod.CompletionInfo[]).

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.

Applies to