public static final class AccessibilityNodeInfo.RangeInfo
extends Object
java.lang.Object | |
↳ | android.view.accessibility.AccessibilityNodeInfo.RangeInfo |
如果节点是范围,则包含信息类。 使用obtain(int, float, float, float)
来获取实例。
Constants |
|
---|---|
int |
RANGE_TYPE_FLOAT 范围类型:浮动。 |
int |
RANGE_TYPE_INT 范围类型:整数。 |
int |
RANGE_TYPE_PERCENT 范围类型:值从零到一的百分比。 |
Public methods |
|
---|---|
float |
getCurrent() 获取当前值。 |
float |
getMax() 获取最大值。 |
float |
getMin() 获取最小值。 |
int |
getType() 获取范围类型。 |
static AccessibilityNodeInfo.RangeInfo |
obtain(int type, float min, float max, float current) 获取一个合并实例。 |
Inherited methods |
|
---|---|
From class java.lang.Object
|
AccessibilityNodeInfo.RangeInfo obtain (int type, float min, float max, float current)
获取一个合并实例。
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 |