Most visited

Recently visited

Added in API level 19

AccessibilityNodeInfo.RangeInfo

public static final class AccessibilityNodeInfo.RangeInfo
extends Object

java.lang.Object
   ↳ android.view.accessibility.AccessibilityNodeInfo.RangeInfo


Class with information if a node is a range. Use obtain(int, float, float, float) to get an instance.

Summary

Constants

int RANGE_TYPE_FLOAT

Range type: float.

int RANGE_TYPE_INT

Range type: integer.

int RANGE_TYPE_PERCENT

Range type: percent with values from zero to one.

Public methods

float getCurrent()

Gets the current value.

float getMax()

Gets the max value.

float getMin()

Gets the min value.

int getType()

Gets the range type.

static AccessibilityNodeInfo.RangeInfo obtain(int type, float min, float max, float current)

Obtains a pooled instance.

Inherited methods

From class java.lang.Object

Constants

RANGE_TYPE_FLOAT

Added in API level 19
int RANGE_TYPE_FLOAT

Range type: float.

Constant Value: 1 (0x00000001)

RANGE_TYPE_INT

Added in API level 19
int RANGE_TYPE_INT

Range type: integer.

Constant Value: 0 (0x00000000)

RANGE_TYPE_PERCENT

Added in API level 19
int RANGE_TYPE_PERCENT

Range type: percent with values from zero to one.

Constant Value: 2 (0x00000002)

Public methods

getCurrent

Added in API level 19
float getCurrent ()

Gets the current value.

Returns
float The current value.

getMax

Added in API level 19
float getMax ()

Gets the max value.

Returns
float The max value.

getMin

Added in API level 19
float getMin ()

Gets the min value.

Returns
float The min value.

getType

Added in API level 19
int getType ()

Gets the range type.

Returns
int The range type.

See also:

obtain

Added in API level 19
AccessibilityNodeInfo.RangeInfo obtain (int type, 
                float min, 
                float max, 
                float current)

Obtains a pooled instance.

Parameters
type int: The type of the range.
min float: The min value.
max float: The max value.
current float: The current value.
Returns
AccessibilityNodeInfo.RangeInfo

Hooray!