Package io.rong.imkit.widget.refresh.api
Interface RefreshContent
-
- All Implemented Interfaces:
public interface RefreshContent
刷新内容组件 Created by scwang on 2017/5/26.
-
-
Method Summary
Modifier and Type Method Description abstract View
getView()
abstract View
getScrollableView()
abstract void
onActionDown(MotionEvent e)
abstract void
setUpComponent(RefreshKernel kernel, View fixedHeader, View fixedFooter)
abstract void
setScrollBoundaryDecider(ScrollBoundaryDecider boundary)
abstract void
setEnableLoadMoreWhenContentNotFull(boolean enable)
abstract void
moveSpinner(int spinner, int headerTranslationViewId, int footerTranslationViewId)
abstract boolean
canRefresh()
abstract boolean
canLoadMore()
abstract AnimatorUpdateListener
scrollContentWhenFinished(int spinner)
-
-
Method Detail
-
getView
abstract View getView()
-
getScrollableView
abstract View getScrollableView()
-
onActionDown
abstract void onActionDown(MotionEvent e)
-
setUpComponent
abstract void setUpComponent(RefreshKernel kernel, View fixedHeader, View fixedFooter)
-
setScrollBoundaryDecider
abstract void setScrollBoundaryDecider(ScrollBoundaryDecider boundary)
-
setEnableLoadMoreWhenContentNotFull
abstract void setEnableLoadMoreWhenContentNotFull(boolean enable)
-
moveSpinner
abstract void moveSpinner(int spinner, int headerTranslationViewId, int footerTranslationViewId)
-
canRefresh
abstract boolean canRefresh()
-
canLoadMore
abstract boolean canLoadMore()
-
scrollContentWhenFinished
abstract AnimatorUpdateListener scrollContentWhenFinished(int spinner)
-
-
-
-