added in version 24.1.0
belongs to Maven artifact com.android.support:support-compat:28.0.0-alpha1

AccessibilityWindowInfoCompat

public class AccessibilityWindowInfoCompat
extends Object

java.lang.Object
   ↳ android.support.v4.view.accessibility.AccessibilityWindowInfoCompat


Helper for accessing AccessibilityWindowInfo.

Summary

Constants

int TYPE_ACCESSIBILITY_OVERLAY

Window type: Windows that are overlaid only by an AccessibilityService for interception of user interactions without changing the windows an accessibility service can introspect.

int TYPE_APPLICATION

Window type: This is an application window.

int TYPE_INPUT_METHOD

Window type: This is an input method window.

int TYPE_SPLIT_SCREEN_DIVIDER

Window type: A system window used to divide the screen in split-screen mode.

int TYPE_SYSTEM

Window type: This is an system window.

Public methods

boolean equals(Object obj)
AccessibilityNodeInfoCompat getAnchor()

Gets the node that anchors this window to another.

void getBoundsInScreen(Rect outBounds)

Gets the bounds of this window in the screen.

AccessibilityWindowInfoCompat getChild(int index)

Gets the child window at a given index.

int getChildCount()

Gets the number of child windows.

int getId()

Gets the unique window id.

int getLayer()

Gets the layer which determines the Z-order of the window.

AccessibilityWindowInfoCompat getParent()

Gets the parent window if such.

AccessibilityNodeInfoCompat getRoot()

Gets the root node in the window's hierarchy.

CharSequence getTitle()

Gets the title of the window.

int getType()

Gets the type of the window.

int hashCode()
boolean isAccessibilityFocused()

Gets if this window has accessibility focus.

boolean isActive()

Gets if this window is active.

boolean isFocused()

Gets if this window has input focus.

static AccessibilityWindowInfoCompat obtain(AccessibilityWindowInfoCompat info)

Returns a cached instance if such is available or a new one is created.

static AccessibilityWindowInfoCompat obtain()

Returns a cached instance if such is available or a new one is created.

void recycle()

Return an instance back to be reused.

String toString()