摘要:項目中時常需要實(shí)現(xiàn)在中嵌入一個或多個?;诖?,在這種情況下我們應(yīng)當(dāng)盡量避免采用嵌套的布局方式
項目中時常需要實(shí)現(xiàn)在ScrollView中嵌入一個或多個RecyclerView。這一做法通常會導(dǎo)致如下幾個問題
頁面滑動卡頓
ScrollView高度顯示不正常
RecyclerView內(nèi)容顯示不全
本文將利用多種方式分別解決上述問題
滑動卡頓解決方案若只存在滑動卡頓這一問題,可以采用如下兩種簡單方式快速解決
利用RecyclerView內(nèi)部方法recyclerView.setHasFixedSize(true); recyclerView.setNestedScrollingEnabled(false);
其中,setHasFixedSize(true)方法使得RecyclerView能夠固定自身size不受adapter變化的影響;而setNestedScrollingeEnabled(false)方法則是進(jìn)一步調(diào)用了RecyclerView內(nèi)部NestedScrollingChildHelper對象的setNestedScrollingeEnabled(false)方法,如下
public void setNestedScrollingEnabled(boolean enabled) { getScrollingChildHelper().setNestedScrollingEnabled(enabled); }
進(jìn)而,NestedScrollingChildHelper對象通過該方法關(guān)閉RecyclerView的嵌套滑動特性,如下
public void setNestedScrollingEnabled(boolean enabled) { if (mIsNestedScrollingEnabled) { ViewCompat.stopNestedScroll(mView); } mIsNestedScrollingEnabled = enabled; }
如此一來,限制了RecyclerView自身的滑動,整個頁面滑動僅依靠ScrollView實(shí)現(xiàn),即可解決滑動卡頓的問題
重寫LayoutManagerLinearLayoutManager linearLayoutManager = new LinearLayoutManager(this) { @Override public boolean canScrollVertically() { return false; } };
這一方式使得RecyclerView的垂直滑動始終返回false,其目的同樣是為了限制自身的滑動
綜合解決方案若是需要綜合解決上述三個問題,則可以采用如下幾種方式
插入LinearLayout/RelativeLayout在原有布局中插入一層LinearLayout/RelativeLayout,形成如下布局
重寫LayoutManager該方法的核心思想在于通過重寫LayoutManager中的onMeasure()方法,即
@Override public void onMeasure(RecyclerView.Recycler recycler, RecyclerView.State state, int widthSpec, int heightSpec) { super.onMeasure(recycler, state, widthSpec, heightSpec); }
重新實(shí)現(xiàn)RecyclerView高度的計算,使得其能夠在ScrollView中表現(xiàn)出正確的高度,具體重寫方式可參考這篇文章
http://www.cnblogs.com/tianzh...
重寫ScrollView該方法的核心思想在于通過重寫ScrollView的onInterceptTouchEvent(MotionEvent ev)方法,攔截滑動事件,使得滑動事件能夠直接傳遞給RecyclerView,具體重寫方式可參考如下
/** * Created by YH on 2017/10/10. */ public class RecyclerScrollView extends ScrollView { private int slop; private int touch; public RecyclerScrollView(Context context) { super(context); setSlop(context); } public RecyclerScrollView(Context context, AttributeSet attrs) { super(context, attrs); setSlop(context); } public RecyclerScrollView(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); setSlop(context); } /** * 是否intercept當(dāng)前的觸摸事件 * @param ev 觸摸事件 * @return true:調(diào)用onMotionEvent()方法,并完成滑動操作 */ @Override public boolean onInterceptTouchEvent(MotionEvent ev) { switch (ev.getAction()) { case MotionEvent.ACTION_DOWN: // 保存當(dāng)前touch的縱坐標(biāo)值 touch = (int) ev.getRawY(); break; case MotionEvent.ACTION_MOVE: // 滑動距離大于slop值時,返回true if (Math.abs((int) ev.getRawY() - touch) > slop) return true; break; } return super.onInterceptTouchEvent(ev); } /** * 獲取相應(yīng)context的touch slop值(即在用戶滑動之前,能夠滑動的以像素為單位的距離) * @param context ScrollView對應(yīng)的context */ private void setSlop(Context context) { slop = ViewConfiguration.get(context).getScaledTouchSlop(); } }
事實(shí)上,盡管我們能夠采用多種方式解決ScrollView嵌套RecyclerView所產(chǎn)生的一系列問題,但由于上述解決方式均會使得RecyclerView在頁面加載過程中一次性顯示所有內(nèi)容,因此當(dāng)RecyclerView下的條目過多時,將會對影響整個應(yīng)用的運(yùn)行效率。基于此,在這種情況下我們應(yīng)當(dāng)盡量避免采用ScrollView嵌套RecyclerView的布局方式
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/67781.html
摘要:缺點(diǎn)自動裝箱的存在意味著每一次插入都會有額外的對象創(chuàng)建。對象本身是一層額外需要被創(chuàng)建以及被垃圾回收的對象。相較于我們舍棄了和類型的放棄了并依賴于二分法查找。 目錄介紹 25.0.0.0 請說一下RecyclerView?adapter的作用是什么,幾個方法是做什么用的?如何理解adapter訂閱者模式? 25.0.0.1 ViewHolder的作用是什么?如何理解ViewHolder...
閱讀 2013·2021-11-23 10:08
閱讀 2348·2021-11-22 15:25
閱讀 3282·2021-11-11 16:55
閱讀 781·2021-11-04 16:05
閱讀 2618·2021-09-10 10:51
閱讀 719·2019-08-29 15:38
閱讀 1593·2019-08-29 14:11
閱讀 3492·2019-08-29 12:42