public interface ScrollingView
android.support.v4.view.ScrollingView |
Known Indirect Subclasses |
一个可以由Views实现的接口,用于提供滚动相关的API。
Public methods |
|
---|---|
abstract int |
computeHorizontalScrollExtent() 计算水平滚动条拇指在水平范围内的水平范围。 |
abstract int |
computeHorizontalScrollOffset() 计算水平滚动条拇指在水平范围内的水平偏移量。 |
abstract int |
computeHorizontalScrollRange() 计算水平滚动条代表的水平范围。 |
abstract int |
computeVerticalScrollExtent() 计算垂直滚动条拇指在垂直范围内的垂直范围。 |
abstract int |
computeVerticalScrollOffset() 计算垂直滚动条拇指在水平范围内的垂直偏移量。 |
abstract int |
computeVerticalScrollRange() 计算垂直滚动条代表的垂直范围。 |
int computeHorizontalScrollExtent ()
计算水平滚动条拇指在水平范围内的水平范围。 该值用于计算滚动条轨道内的拇指长度。
范围以任意单位表示,必须与 computeHorizontalScrollRange()
和 computeHorizontalScrollOffset()
使用的单位相同。
默认范围是此视图的图纸宽度。
Returns | |
---|---|
int |
the horizontal extent of the scrollbar's thumb |
也可以看看:
computeHorizontalScrollRange()
computeHorizontalScrollOffset()
int computeHorizontalScrollOffset ()
计算水平滚动条拇指在水平范围内的水平偏移量。 该值用于计算滚动条轨道内的拇指位置。
范围以任意单位表示,必须与 computeHorizontalScrollRange()
和 computeHorizontalScrollExtent()
使用的单位相同。
默认偏移量是该视图的滚动偏移量。
Returns | |
---|---|
int |
the horizontal offset of the scrollbar's thumb |
也可以看看:
computeHorizontalScrollRange()
computeHorizontalScrollExtent()
int computeHorizontalScrollRange ()
计算水平滚动条代表的水平范围。
范围以任意单位表示,必须与 computeHorizontalScrollExtent()
和 computeHorizontalScrollOffset()
使用的单位相同。
默认范围是此视图的图纸宽度。
Returns | |
---|---|
int |
the total horizontal range represented by the horizontal scrollbar |
也可以看看:
computeHorizontalScrollExtent()
computeHorizontalScrollOffset()
int computeVerticalScrollExtent ()
计算垂直滚动条拇指在垂直范围内的垂直范围。 该值用于计算滚动条轨道内的拇指长度。
范围以任意单位表示,必须与 computeVerticalScrollRange()
和 computeVerticalScrollOffset()
使用的单位相同。
默认范围是此视图的绘图高度。
Returns | |
---|---|
int |
the vertical extent of the scrollbar's thumb |
也可以看看:
computeVerticalScrollRange()
computeVerticalScrollOffset()
int computeVerticalScrollOffset ()
计算垂直滚动条拇指在水平范围内的垂直偏移量。 该值用于计算滚动条轨道内的拇指位置。
范围以任意单位表示,必须与 computeVerticalScrollRange()
和 computeVerticalScrollExtent()
使用的单位相同。
默认偏移量是该视图的滚动偏移量。
Returns | |
---|---|
int |
the vertical offset of the scrollbar's thumb |
也可以看看:
computeVerticalScrollRange()
computeVerticalScrollExtent()
int computeVerticalScrollRange ()
计算垂直滚动条代表的垂直范围。
范围以任意单位表示,必须与 computeVerticalScrollExtent()
和 computeVerticalScrollOffset()
使用的单位相同。
Returns | |
---|---|
int |
the total vertical range represented by the vertical scrollbar 默认范围是此视图的绘图高度。 |
也可以看看:
computeVerticalScrollExtent()
computeVerticalScrollOffset()