天天看點

NestedScrollView嵌套RecyclerView最後一條item顯示不全

NestedScrollView嵌套RecyclerView最後一條item顯示不全

首先要在最外層的NestedScrollView配置屬性 android:fillViewport="true":

<android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true">           

然後在上層Java代碼,設定RecyclerView的屬性:

mLinearLayoutManager.setSmoothScrollbarEnabled(true);
        mRecyclerView.setHasFixedSize(true);
        mRecyclerView.setNestedScrollingEnabled(false);
           

繼續閱讀