摘要:為了達到更好的顯示效果,最好禁用系統的,如上給添加。頭部固定高度在此高度上顯示刷新狀態底部高度設置最大的越界高度靈活的設置是否禁用上下拉。是否允許越界回彈。表示向上拉下拉釋放時回調的狀態。
TwinklingRefreshLayout v1.04 版精心重構,優化 UI、刷新及越界動畫效果,修復眾多 bug,完美發布!
TwinklingRefreshLayout延伸了Google的SwipeRefreshLayout的思想,不在列表控件上動刀,而是使用一個ViewGroup來包含列表控件,以保持其較低的耦合性和較高的通用性。其主要特性有:
支持RecyclerView、ScrollView、AbsListView系列(ListView、GridView)、WebView以及其它可以獲取到scrollY的控件
支持加載更多
默認支持 越界回彈,隨手勢速度有不同的效果
可開啟沒有刷新控件的純凈越界回彈模式
setOnRefreshListener中擁有大量可以回調的方法
將Header和Footer抽象成了接口,并回調了滑動過程中的系數,方便實現個性化的Header和Footer
Demo下載Demo
You can download the Video for more details.
Music - ListView - FixedHeader
Food - RecyclerView - PureScrollMode
Science - GridView - SinaHeader
Photo - RecyclerView - BezierLayout
Story - ScrollView - GoogleDotView
Dribbble - WebView - FloatRefresh
使用方法 1.添加gradle依賴將libray模塊復制到項目中,或者直接在build.gradle中依賴:
compile "com.lcodecorex:tkrefreshlayout:1.0.4"2.在xml中添加TwinklingRefreshLayout
Android系統為了跟iOS不一樣,當界面OverScroll的時候會顯示一個陰影。為了達到更好的顯示效果,最好禁用系統的overScroll,如上給RecyclerView添加android:overScrollMode="never"。
3.在Activity或者Fragment中配置refreshLayout.setOnRefreshListener(new RefreshListenerAdapter(){ @Override public void onRefresh(final TwinklingRefreshLayout refreshLayout) { new Handler().postDelayed(new Runnable() { @Override public void run() { refreshLayout.finishRefreshing(); } },2000); } @Override public void onLoadMore(final TwinklingRefreshLayout refreshLayout) { new Handler().postDelayed(new Runnable() { @Override public void run() { refreshLayout.finishLoadmore(); } },2000); } }); }
使用finishRefreshing()方法結束刷新,finishLoadmore()方法結束加載更多。此處OnRefreshListener還有其它方法,可以選擇需要的來重寫。
如果你想進入到界面的時候主動調用下刷新,可以調用startRefresh()/startLoadmore()方法。
setWaveHeight 設置頭部可拉伸的最大高度。
setHeaderHeight 頭部固定高度(在此高度上顯示刷新狀態)
setBottomHeight 底部高度
setOverScrollHeight 設置最大的越界高度
setEnableRefresh、setEnableLoadmore靈活的設置是否禁用上下拉。
設置頭部/底部個性化刷新效果,頭部需要實現IHeaderView,底部需要實現IBottomView。
setEnableOverScroll是否允許越界回彈。
是否允許在越界的時候顯示刷新控件,默認是允許的,也就是Fling越界的時候Header或Footer照常顯示,反之就是不顯示;可能有特殊的情況,刷新控件會影響顯示體驗才設立了這個狀態。
開啟純凈的越界回彈模式,也就是所有刷新相關的View都不顯示,只顯示越界回彈效果
是否在底部越界的時候自動切換到加載更多模式
添加一個固定在頂部的Header(效果還需要優化)
支持切換到像SwipeRefreshLayout一樣的懸浮刷新模式了。
4.擴展屬性tr_wave_height 頭部拉伸允許的最大高度
tr_head_height 頭部高度
tr_bottom_height 底部高度
tr_overscroll_height 允許越界的最大高度
tr_enable_loadmore 是否允許加載更多,默認為true
tr_pureScrollMode_on 是否開啟純凈的越界回彈模式
tr_overscroll_top_show - 否允許頂部越界時顯示頂部View
tr_overscroll_bottom_show 是否允許底部越界時顯示底部View
tr_enable_overscroll 是否允許越界回彈
其它說明 1.默認支持越界回彈,并可以隨手勢越界不同的高度這一點很多類似SwipeRefreshLayout的刷新控件都沒有做到(包括SwipeRefreshLayout),因為沒有攔截下來的時間會傳遞給列表控件,而列表控件的滾動狀態很難獲取。解決方案就是給列表控件設置了OnTouchListener并把事件交給GestureDetector處理,然后在列表控件的OnScrollListener中監聽View是否滾動到了頂部(沒有OnScrollListener的則采用延時監聽策略)。
2.setOnRefreshListener大量可以回調的方法onPullingDown(TwinklingRefreshLayout refreshLayout, float fraction) 正在下拉的過程
onPullingUp(TwinklingRefreshLayout refreshLayout, float fraction) 正在上拉的過程
onPullDownReleasing(TwinklingRefreshLayout refreshLayout, float fraction) 下拉釋放過程
onPullUpReleasing(TwinklingRefreshLayout refreshLayout, float fraction) 上拉釋放過程
onRefresh(TwinklingRefreshLayout refreshLayout) 正在刷新
onLoadMore(TwinklingRefreshLayout refreshLayout) 正在加載更多
其中fraction表示當前下拉的距離與Header高度的比值(或者當前上拉距離與Footer高度的比值)。
3.Header和FootersetWaveColor
setRippleColor
setArrowResource
setTextColor
setPullDownStr
setReleaseRefreshStr
setRefreshingStr
setProgressBackgroundColorSchemeResource(@ColorRes int colorRes)
setProgressBackgroundColorSchemeColor(@ColorInt int color)
setColorSchemeResources(@ColorRes int... colorResIds)
FootersetNormalColor(@ColorInt int color)
setAnimatingColor(@ColorInt int color)
更多動效可以參考AVLoadingIndicatorView庫。
3.實現個性化的Header和Footer相關接口分別為IHeaderView和IBottomView,代碼如下:
public interface IHeaderView { View getView(); void onPullingDown(float fraction,float maxHeadHeight,float headHeight); void onPullReleasing(float fraction,float maxHeadHeight,float headHeight); void startAnim(float maxHeadHeight,float headHeight); void reset(); }
其中getView()方法用于在TwinklingRefreshLayout中獲取到實際的Header,因此不能返回null。
實現像新浪微博那樣的刷新效果(有部分修改,具體請看源碼),實現代碼如下:
1.首先定義SinaRefreshHeader繼承自FrameLayout并實現IHeaderView方法
2.getView()方法中返回this
3.在onAttachedToWindow()或者構造函數方法中獲取一下需要用到的布局
@Override protected void onAttachedToWindow() { super.onAttachedToWindow(); if (rootView == null) { rootView = View.inflate(getContext(), R.layout.view_sinaheader, null); refreshArrow = (ImageView) rootView.findViewById(R.id.iv_arrow); refreshTextView = (TextView) rootView.findViewById(R.id.tv); loadingView = (ImageView) rootView.findViewById(R.id.iv_loading); addView(rootView); } }
4.實現其它方法
@Override public void onPullingDown(float fraction, float maxHeadHeight, float headHeight) { if (fraction < 1f) refreshTextView.setText(pullDownStr); if (fraction > 1f) refreshTextView.setText(releaseRefreshStr); refreshArrow.setRotation(fraction * headHeight / maxHeadHeight * 180); } @Override public void onPullReleasing(float fraction, float maxHeadHeight, float headHeight) { if (fraction < 1f) { refreshTextView.setText(pullDownStr); refreshArrow.setRotation(fraction * headHeight / maxHeadHeight * 180); if (refreshArrow.getVisibility() == GONE) { refreshArrow.setVisibility(VISIBLE); loadingView.setVisibility(GONE); } } } @Override public void startAnim(float maxHeadHeight, float headHeight) { refreshTextView.setText(refreshingStr); refreshArrow.setVisibility(GONE); loadingView.setVisibility(VISIBLE); }
5.布局文件
注意fraction的使用,比如上面的代碼refreshArrow.setRotation(fraction * headHeight / maxHeadHeight * 180),fraction * headHeight表示當前頭部滑動的距離,然后算出它和最大高度的比例,然后乘以180,可以使得在滑動到最大距離時Arrow恰好能旋轉180度。
onPullingDown/onPullingUp表示正在下拉/正在上拉的過程。
onPullReleasing表示向上拉/下拉釋放時回調的狀態。
startAnim則是在onRefresh/onLoadMore之后才會回調的過程(此處是顯示了加載中的小菊花)
如上所示,輕而易舉就可以實現一個個性化的Header或者Footer。(更簡單的實現請參考Demo中的 TextHeaderView(圖四))。
TODO制作一個star相關的動效
CoordinateLayout及NestedScroll支持
帶視差效果的Header
更新日志 v1.04第二次重構完成,將核心邏輯拆分為RefreshProcessor、AnimProcessor、OverScrollProcessor、CoProcessor
優化越界策越,手勢決定越界高度
優化界面流暢度
添加類似SwipeRefreshLayout的懸浮刷新功能(ProgressLayout)
滑到底部自動加載更多or回彈可選,默認為回彈
允許在結束刷新之前執行一個動效:IHeadView.onFinish(animEndListener)
新增支持Header(Beta)
優化BezierLayout、SinaRefreshLayout等的顯示并增加調節屬性
新增支持設置是否允許OverScroll
修復刷新或加載更多時,列表item沒有鋪滿列表控件,滑動無效的問題
添加主動刷新/加載更多的方法:startRefresh(),startLoadMore()
修復頂部和底部越界高度不一致的問題
修復WebView在底部fling時不能越界的問題
動畫執行時間與高度相關,動效更加柔和
v1.03擴展了更多的屬性
修復Fragment回收導致的空指針異常問題
加入x方向判斷,減小了滑動沖突
優化加載更多列表顯示問題
可以靈活的設置是否禁用上下拉
修復GridView滑動過程中出現的白條問題
Demo中添加輪播條展示
v1.02修復加載更多列表控件的顯示問題
v1.01支持了RecyclerView、ScrollView、AbsListView、WebView
支持越界回彈
支持個性化Header、Footer
ps:如有任何問題或者是建議,可以郵箱聯系我!(lcodecore@163.com)
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/66326.html
摘要:為了達到更好的顯示效果,最好禁用系統的,如上給添加。頭部固定高度在此高度上顯示刷新狀態底部高度設置最大的越界高度靈活的設置是否禁用上下拉。是否允許越界回彈。表示向上拉下拉釋放時回調的狀態。 TwinklingRefreshLayout v1.04 版精心重構,優化 UI、刷新及越界動畫效果,修復眾多 bug,完美發布!TwinklingRefreshLayout延伸了Google的Sw...
摘要:為了達到更好的顯示效果,最好禁用系統的,如上給添加。頭部固定高度在此高度上顯示刷新狀態底部高度設置最大的越界高度靈活的設置是否禁用上下拉。是否允許越界回彈。表示向上拉下拉釋放時回調的狀態。 TwinklingRefreshLayout v1.04 版精心重構,優化 UI、刷新及越界動畫效果,修復眾多 bug,完美發布!TwinklingRefreshLayout延伸了Google的Sw...
閱讀 775·2023-04-25 16:55
閱讀 2806·2021-10-11 10:59
閱讀 2070·2021-09-09 11:38
閱讀 1782·2021-09-03 10:40
閱讀 1485·2019-08-30 15:52
閱讀 1125·2019-08-30 15:52
閱讀 954·2019-08-29 15:33
閱讀 3494·2019-08-29 11:26