RefreshLayout

public interface RefreshLayout

Refresh layout interface.

Functions

Link copied to clipboard
public abstract boolean autoLoadMore()
Display load more animation and trigger load more event.
public abstract boolean autoLoadMore(int delayed)
Display load more animation and trigger load more event with delayed start.
public abstract boolean autoLoadMore(int delayed, int duration, float dragRate, boolean animationOnly)
Display load more animation with multifunction options.
Link copied to clipboard
public abstract boolean autoLoadMoreAnimationOnly()
Display load more animation without triggering events.
Link copied to clipboard
public abstract boolean autoRefresh()
Display refresh animation and trigger refresh event.
public abstract boolean autoRefresh(int delayed)
Display refresh animation and trigger refresh event with delayed start.
public abstract boolean autoRefresh(int delayed, int duration, float dragRate, boolean animationOnly)
Display refresh animation with multifunction options.
Link copied to clipboard
public abstract boolean autoRefreshAnimationOnly()
Display refresh animation without triggering events.
Link copied to clipboard
Close the Header or Footer.
Link copied to clipboard
public abstract RefreshLayout finishLoadMore()
public abstract RefreshLayout finishLoadMore(boolean success)
public abstract RefreshLayout finishLoadMore(int delayed)
public abstract RefreshLayout finishLoadMore(int delayed, boolean success, boolean noMoreData)
Finish load more.
Link copied to clipboard
Finish load more and mark no more data.
Link copied to clipboard
public abstract RefreshLayout finishRefresh()
public abstract RefreshLayout finishRefresh(boolean success)
public abstract RefreshLayout finishRefresh(int delayed)
public abstract RefreshLayout finishRefresh(int delayed, boolean success, Boolean noMoreData)
Finish refresh.
Link copied to clipboard
Finish refresh and mark no more data.
Link copied to clipboard
public abstract ViewGroup getLayout()
Get the ViewGroup of RefreshLayout.
Link copied to clipboard
public abstract RefreshFooter getRefreshFooter()
Get the current Footer of RefreshLayout.
Link copied to clipboard
public abstract RefreshHeader getRefreshHeader()
Get the current Header of RefreshLayout.
Link copied to clipboard
public abstract RefreshState getState()
Get the current state of RefreshLayout.
Link copied to clipboard
public abstract boolean isLoading()
Whether currently loading
Link copied to clipboard
public abstract boolean isRefreshing()
Whether currently refreshing
Link copied to clipboard
public abstract RefreshLayout resetNoMoreData()
Restore the original state after finishLoadMoreWithNoMoreData.
Link copied to clipboard
public abstract RefreshLayout setDisableContentWhenLoading(boolean disable)
Set whether to disable content interaction during loading.
Link copied to clipboard
public abstract RefreshLayout setDisableContentWhenRefresh(boolean disable)
Set whether to disable content interaction during refresh.
Link copied to clipboard
public abstract RefreshLayout setDragRate(float rate)
Set the damping effect.
Link copied to clipboard
public abstract RefreshLayout setEnableAutoLoadMore(boolean enabled)
Sets whether to listen for the list to trigger a load event when scrolling to the bottom (default true).
Link copied to clipboard
public abstract RefreshLayout setEnableClipFooterWhenFixedBehind(boolean enabled)
Set whether to clip footer when the Footer is in the FixedBehind state.
Link copied to clipboard
public abstract RefreshLayout setEnableClipHeaderWhenFixedBehind(boolean enabled)
Set whether to clip header when the Header is in the FixedBehind state.
Link copied to clipboard
public abstract RefreshLayout setEnableFooterFollowWhenNoMoreData(boolean enabled)
Set whether Footer follows the content after there is no more data.
Link copied to clipboard
public abstract RefreshLayout setEnableFooterTranslationContent(boolean enabled)
Set whether to pull up the content while pulling up the footer.
Link copied to clipboard
public abstract RefreshLayout setEnableHeaderTranslationContent(boolean enabled)
Set whether to pull down the content while pulling down the header.
Link copied to clipboard
public abstract RefreshLayout setEnableLoadMore(boolean enabled)
Set whether to enable pull-up loading more (enabled by default).
Link copied to clipboard
public abstract RefreshLayout setEnableLoadMoreWhenContentNotFull(boolean enabled)
Set whether to pull up and load more when the content is not full of one page.
Link copied to clipboard
public abstract RefreshLayout setEnableNestedScroll(boolean enabled)
Setting whether nesting scrolling is enabled (default off + smart on).
Link copied to clipboard
public abstract RefreshLayout setEnableOverScrollBounce(boolean enabled)
Set whether to enable the over-scroll bounce function.
Link copied to clipboard
public abstract RefreshLayout setEnableOverScrollDrag(boolean enabled)
Set whether to enable over-scroll drag (imitation iPhone effect).
Link copied to clipboard
public abstract RefreshLayout setEnablePureScrollMode(boolean enabled)
Set whether to enable pure scroll mode.
Link copied to clipboard
public abstract RefreshLayout setEnableRefresh(boolean enabled)
Whether to enable pull-down refresh (enabled by default).
Link copied to clipboard
public abstract RefreshLayout setEnableScrollContentWhenLoaded(boolean enabled)
Set whether to scroll the content to display new data after loading more complete.
Link copied to clipboard
public abstract RefreshLayout setEnableScrollContentWhenRefreshed(boolean enabled)
Set whether to scroll the content to display new data after the refresh is complete.
Link copied to clipboard
public abstract RefreshLayout setFixedFooterViewId(int id)
Set the View ID fixed above the Footer, which stays stationary when Header scrolls.
Link copied to clipboard
public abstract RefreshLayout setFixedHeaderViewId(int id)
Set the View ID fixed below the Header, which stays stationary when Footer scrolls.
Link copied to clipboard
public abstract RefreshLayout setFooterHeight(float dp)
Set the Footer's height.
Link copied to clipboard
public abstract RefreshLayout setFooterHeightPx(int px)
Set the Footer height.
Link copied to clipboard
public abstract RefreshLayout setFooterInsetStart(float dp)
Set the Footer's start offset.
Link copied to clipboard
public abstract RefreshLayout setFooterInsetStartPx(int px)
Set the Footer's start offset.
Link copied to clipboard
public abstract RefreshLayout setFooterMaxDragRate(float rate)
Set the ratio of the maximum height to drag footer.
Link copied to clipboard
public abstract RefreshLayout setFooterTranslationViewId(int id)
Set the View ID that should scroll along with the Footer.
Link copied to clipboard
public abstract RefreshLayout setFooterTriggerRate(float rate)
Set the ratio at which the load more is triggered.
Link copied to clipboard
public abstract RefreshLayout setHeaderHeight(float dp)
Set the Header's height.
Link copied to clipboard
public abstract RefreshLayout setHeaderHeightPx(int px)
Set the Header height.
Link copied to clipboard
public abstract RefreshLayout setHeaderInsetStart(float dp)
Set the Header's start offset(see srlHeaderInsetStart in the RepastPracticeActivity XML in demo-app for the practical application).
Link copied to clipboard
public abstract RefreshLayout setHeaderInsetStartPx(int px)
Set the Header's start offset(see srlHeaderInsetStart in the RepastPracticeActivity XML in demo-app for the practical application).
Link copied to clipboard
public abstract RefreshLayout setHeaderMaxDragRate(float rate)
Set the ratio of the maximum height to drag header.
Link copied to clipboard
public abstract RefreshLayout setHeaderTranslationViewId(int id)
Set the View ID that should scroll along with the Header.
Link copied to clipboard
public abstract RefreshLayout setHeaderTriggerRate(float rate)
Set the ratio at which the refresh is triggered.
Link copied to clipboard
public abstract RefreshLayout setNoMoreData(boolean noMoreData)
Set the no-more-data state.
Link copied to clipboard
public abstract RefreshLayout setOnLoadMoreListener(OnLoadMoreListener listener)
Set load more listener separately.
Link copied to clipboard
public abstract RefreshLayout setOnMultiListener(OnMultiListener listener)
Set up a multi-function listener.
Link copied to clipboard
public abstract RefreshLayout setOnRefreshListener(OnRefreshListener listener)
Set refresh listener separately.
Link copied to clipboard
public abstract RefreshLayout setOnRefreshLoadMoreListener(OnRefreshLoadMoreListener listener)
Set refresh and load listeners at the same time.
Link copied to clipboard
public abstract RefreshLayout setPrimaryColors(Array<int> primaryColors)
Set theme color int (primaryColor and accentColor).
Link copied to clipboard
public abstract RefreshLayout setPrimaryColorsId(Array<int> primaryColorId)
Set theme color id (primaryColor and accentColor).
Link copied to clipboard
public abstract RefreshLayout setReboundDuration(int duration)
Set the duration of the rebound animation.
Link copied to clipboard
public abstract RefreshLayout setReboundInterpolator(Interpolator interpolator)
Set the rebound interpolator.
Link copied to clipboard
public abstract RefreshLayout setRefreshContent(View content)
public abstract RefreshLayout setRefreshContent(View content, int width, int height)
Set the content of RefreshLayout(Suitable for non-XML pages, not suitable for replacing empty layouts).
Link copied to clipboard
public abstract RefreshLayout setRefreshFooter(RefreshFooter footer)
public abstract RefreshLayout setRefreshFooter(RefreshFooter footer, int width, int height)
Set the footer of RefreshLayout.
Link copied to clipboard
public abstract RefreshLayout setRefreshHeader(RefreshHeader header)
public abstract RefreshLayout setRefreshHeader(RefreshHeader header, int width, int height)
Set the header of RefreshLayout.
Link copied to clipboard
public abstract RefreshLayout setScrollBoundaryDecider(ScrollBoundaryDecider boundary)
Set the scroll boundary Decider, Can customize when you can refresh.