InputMethodService.OnUpdateExtractingVisibility(EditorInfo) 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 fullscreen-mode extracting editor info has changed, to determine whether the extracting (extract text and candidates) portion of the UI should be shown.
[Android.Runtime.Register("onUpdateExtractingVisibility", "(Landroid/view/inputmethod/EditorInfo;)V", "GetOnUpdateExtractingVisibility_Landroid_view_inputmethod_EditorInfo_Handler")]
public virtual void OnUpdateExtractingVisibility (Android.Views.InputMethods.EditorInfo? ei);
[<Android.Runtime.Register("onUpdateExtractingVisibility", "(Landroid/view/inputmethod/EditorInfo;)V", "GetOnUpdateExtractingVisibility_Landroid_view_inputmethod_EditorInfo_Handler")>]
abstract member OnUpdateExtractingVisibility : Android.Views.InputMethods.EditorInfo -> unit
override this.OnUpdateExtractingVisibility : Android.Views.InputMethods.EditorInfo -> unit
Parameters
- ei
- EditorInfo
- Attributes
Remarks
Called when the fullscreen-mode extracting editor info has changed, to determine whether the extracting (extract text and candidates) portion of the UI should be shown. The standard implementation hides or shows the extract area depending on whether it makes sense for the current editor. In particular, a InputType#TYPE_NULL
input type or EditorInfo#IME_FLAG_NO_EXTRACT_UI
flag will turn off the extract area since there is no text to be shown.
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.