Java android.support.v4.view.accessibility AccessibilityNodeInfoCompat fields, constructors, methods, implement or subclass

Example usage for Java android.support.v4.view.accessibility AccessibilityNodeInfoCompat fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for android.support.v4.view.accessibility AccessibilityNodeInfoCompat.

The text is from its open source code.

Subclass

android.support.v4.view.accessibility.AccessibilityNodeInfoCompat has subclasses.
Click this link to see all its subclasses.

Field

intACTION_FOCUS
Action that focuses the node.
intACTION_CLEAR_FOCUS
Action that unfocuses the node.
intACTION_SELECT
Action that selects the node.
intACTION_CLEAR_SELECTION
Action that unselects the node.

Constructor

Method

voidaddAction(int action)
Adds an action that can be performed on the node.
voidaddChild(View child)
Adds a child.
booleanequals(Object obj)
ListfindAccessibilityNodeInfosByText(String text)
Finds android.view.accessibility.AccessibilityNodeInfo s by text.
intgetActions()
Gets the actions that can be performed on the node.
voidgetBoundsInParent(Rect outBounds)
Gets the node bounds in parent coordinates.
voidgetBoundsInScreen(Rect outBounds)
Gets the node bounds in screen coordinates.
AccessibilityNodeInfoCompatgetChild(int index)
Get the child at given index.
intgetChildCount()
Gets the number of children.
CharSequencegetClassName()
Gets the class this node comes from.
CharSequencegetContentDescription()
Gets the content description of this node.
CharSequencegetPackageName()
Gets the package this node comes from.
AccessibilityNodeInfoCompatgetParent()
Gets the parent.
CharSequencegetText()
Gets the text of this node.
intgetWindowId()
Gets the id of the window from which the info comes from.
inthashCode()
booleanisCheckable()
Gets whether this node is checkable.
booleanisChecked()
Gets whether this node is checked.
booleanisClickable()
Gets whether this node is clickable.
booleanisEnabled()
Gets whether this node is enabled.
booleanisFocusable()
Gets whether this node is focusable.
booleanisFocused()
Gets whether this node is focused.
booleanisLongClickable()
Gets whether this node is long clickable.
booleanisPassword()
Gets whether this node is a password.
booleanisScrollable()
Gets if the node is scrollable.
booleanisSelected()
Gets whether this node is selected.
AccessibilityNodeInfoCompatobtain(View source)
Returns a cached instance if such is available otherwise a new one and sets the source.
AccessibilityNodeInfoCompatobtain(AccessibilityNodeInfoCompat info)
Returns a cached instance if such is available or a new one is create.
AccessibilityNodeInfoCompatobtain()
Returns a cached instance if such is available otherwise a new one.
booleanperformAction(int action)
Performs an action on the node.
voidrecycle()
Return an instance back to be reused.
voidsetBoundsInParent(Rect bounds)
Sets the node bounds in parent coordinates.
voidsetBoundsInScreen(Rect bounds)
Sets the node bounds in screen coordinates.
voidsetCheckable(boolean checkable)
Sets whether this node is checkable.
voidsetChecked(boolean checked)
Sets whether this node is checked.
voidsetClassName(CharSequence className)
Sets the class this node comes from.
voidsetClickable(boolean clickable)
Sets whether this node is clickable.
voidsetContentDescription(CharSequence contentDescription)
Sets the content description of this node.
voidsetEnabled(boolean enabled)
Sets whether this node is enabled.
voidsetFocusable(boolean focusable)
Sets whether this node is focusable.
voidsetPackageName(CharSequence packageName)
Sets the package this node comes from.
voidsetParent(View parent)
Sets the parent.
voidsetScrollable(boolean scrollable)
Sets if the node is scrollable.
voidsetText(CharSequence text)
Sets the text of this node.
StringtoString()
Returns a string representation of the object.