如何在父(ScrollView)完全滚动之前禁用子(RecyclerView)滚动

时间:2016-03-05 05:52:47

标签: android android-recyclerview android-scrollview

我在ScrollView中有一个RecyclerView。当我尝试滚动到底部时,RecyclerView(子元素)在父开始滚动之前滚动到底部。但是我想要它,父母应该在孩子开始滚动之前完全滚动。这是我的布局文件。有人可以指导我如何实现这一目标?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<ScrollView
    android:id="@+id/scrollView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:id="@+id/user_activity_linear_layout">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="400dp"
            android:id="@+id/blank_layout"
            android:orientation="vertical">
        </LinearLayout>

        <android.support.v7.widget.RecyclerView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/recently_watched_recycler_view"/>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="400dp"
            android:id="@+id/blank_layout"
            android:orientation="vertical">
        </LinearLayout>

    </LinearLayout>

</ScrollView>

</RelativeLayout>

2 个答案:

答案 0 :(得分:0)

禁用RecyclerView。扩展滚动视图,以便您知道何时ot到达底部。

public class myScrollView extends ScrollView
{
    public myScrollView(Context context)
    {
        super(context);
    }
    public myScrollView(Context context, AttributeSet attributeSet)
    {
        super(context,attributeSet);
    }

@Override
protected void onScrollChanged(int l, int t, int oldl, int oldt)
{
    View view = (View)getChildAt(getChildCount()-1);
    int d = view.getBottom();
    d -= (getHeight()+getScrollY());
    if(d==0)
    {
        //you are at the end of the list in scrollview 
        //do what you wanna do here
    }
    else
        super.onScrollChanged(l,t,oldl,oldt);
}

}

一旦你的scrollViewReaches底部启用了recyclerView。搏一搏。如果您无法使用此方法达到您想要的效果,请告诉我。

答案 1 :(得分:0)

只需使用NestedScrollView - 它支持在其中嵌套启用滚动的视图(例如RecyclerView)。确保您使用的是Support Library 23.2,这允许RecyclerView根据其内容自行衡量。