InputMethodService.ExtractViewShown 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.
Return whether the fullscreen extract view is shown. -or- Controls the visibility of the extracted text area.
public virtual bool ExtractViewShown { [Android.Runtime.Register("isExtractViewShown", "()Z", "GetIsExtractViewShownHandler")] get; [Android.Runtime.Register("setExtractViewShown", "(Z)V", "GetSetExtractViewShown_ZHandler")] set; }
[<get: Android.Runtime.Register("isExtractViewShown", "()Z", "GetIsExtractViewShownHandler")>]
[<set: Android.Runtime.Register("setExtractViewShown", "(Z)V", "GetSetExtractViewShown_ZHandler")>]
member this.ExtractViewShown : bool with get, set
Property Value
- Attributes
Remarks
Property getter documentation:
Return whether the fullscreen extract view is shown. This will only return true if #isFullscreenMode()
returns true, and in that case its value depends on the last call to #setExtractViewShown(boolean)
. This effectively lets you determine if the application window is entirely covered (when this returns true) or if some part of it may be shown (if this returns false, though if #isFullscreenMode()
returns true in that case then it is probably only a sliver of the application).
Java documentation for android.inputmethodservice.InputMethodService.isExtractViewShown()
.
Property setter documentation:
Controls the visibility of the extracted text area. This only applies when the input method is in fullscreen mode, and thus showing extracted text. When false, the extracted text will not be shown, allowing some of the application to be seen behind. This is normally set for you by #onUpdateExtractingVisibility
. This controls the visibility of both the extracted text and candidate view; the latter since it is not useful if there is no text to see.
Java documentation for android.inputmethodservice.InputMethodService.setExtractViewShown(boolean)
.
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.