ScrollView中的RecyclerView无法正常工作


276

我正在尝试实现一个包含RecyclerView和ScrollView的布局。

布局模板:

<RelativeLayout>
    <ScrollView android:id="@+id/myScrollView">
       <unrelated data>...</unrealated data>

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


</RelativeLayout>

问题:我可以滚动到的最后一个元素 ScrollView

我尝试过的事情:

  1. ScrollView(现在ScrollView包含RecyclerView)内的卡片视图-可以看到卡片向上直到RecyclerView
  2. 最初的想法是viewGroup使用RecyclerView而不是ScrollView其中一种类型的views 来实现此功能,CardView但是我得到了与完全相同的结果ScrollView


15
在许多情况下,一个简单的解决方案是使用NestedScrollView它,因为它可以处理很多滚动问题
Richard Le Mesurier

理查二月份给了你答案。使用NestedScrollView而不是ScrollView。那正是它的目的。
Mike M.

2
不会改变我的事情。
卢克·艾里森

2
供以后参考,如果有人遇到只有棉花糖/牛轧糖(API 23,24)设备类似的问题,请在stackoverflow.com/a/38995399/132121
Hossain Khan

Answers:


653

NestedScrollView代替ScrollView

请阅读NestedScrollView参考文档以获取更多信息。

并添加recyclerView.setNestedScrollingEnabled(false);到您的RecyclerView


24
适用于:android.support.v4.widget.NestedScrollView
Cocorico

7
保留android:layout_height="wrap_content"为ViewHolder夸大的布局
Sarath Babu

4
NestedScrollView不像,在复杂的布局中对我而言是滞后的ScrollView。搜索解决方案而无需使用NestedScrollView
Roman Samoylenko '17

7
您也可以将android:nestedScrollingEnabled =“ false”添加到XML而不是recyclerView.setNestedScrollingEnabled(false);。
kostyabakay

2
它对我有用,但是请记住,recyclerView中的项目没有被回收。
Mostafa Arian Nejad

102

我知道我在游戏中迟到了,但是即使在Google已经解决了 android.support.v7.widget.RecyclerView

我现在得到的问题是RecyclerViewlayout_height=wrap_content没有把所有的项目问题的高度内ScrollView发生在棉花糖和牛轧糖+(API 23,24,25)版本。
(UPDATE:更换ScrollViewandroid.support.v4.widget.NestedScrollView所有版本的作品我种种原因错过了测试。接受的解决方案在我的GitHub项目作为演示添加这个。)

在尝试了不同的方法之后,我发现了解决此问题的解决方法。

简而言之,这是我的布局结构:

<ScrollView>
  <LinearLayout> (vertical - this is the only child of scrollview)
     <SomeViews>
     <RecyclerView> (layout_height=wrap_content)
     <SomeOtherViews>

解决办法是在包装的RecyclerViewRelativeLayout。不要问我如何找到这种解决方法!!!¯\_(ツ)_/¯

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:descendantFocusability="blocksDescendants">

    <android.support.v7.widget.RecyclerView
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

</RelativeLayout>

完整的示例可在GitHub项目上找到-https : //github.com/amardeshbd/android-recycler-view-wrap-content

以下是演示屏幕录像,其中显示了实际的修复程序:

截屏


6
谢谢男人..它的帮助很大..但是在您的解决方案之后滚动变得困难,所以我设置了recyclerview.setNestedScrollingEnabled(false);。现在它的工作就像一种魅力。
Sagar Chavada '17

4
这种方法回收视图吗?如果我们有大约数百个对象要回收。这不是解决办法。
androidXP '17

1
是的,@ androidXP是正确的,这种破解不是一长串解决方案。我的用例是列表视图中小于10的固定项目。至于我如何找到其他解决方法,我尝试了随机的事情,这是其中之一:-)
Hossain Khan

perfect。解决了我的神经胶蛋白软糖和鞋帮问题。;)
Amir Ziarati

2
如果我使用此解决方案,则将为列表中的所有项目调用onBindView,这不是recyclerview的用例。
thedarkpassenger

54

虽然建议

您永远不要将可滚动视图放在另一个可滚动视图中

这是一个合理的建议,但是,如果在回收器视图上设置一个固定的高度,它应该可以正常工作。

如果您知道适配器项目布局的高度,则只需计算RecyclerView的高度即可。

int viewHeight = adapterItemSize * adapterData.size();
recyclerView.getLayoutParams().height = viewHeight;

10
如何在recyclerview中获得adapterItemSize任何想法?
Krutik 2015年

1
它就像一个魅力!应该稍作修正:int viewHeight = adapterItemSize * adapterData.size(); recyclerView.getLayoutParams()。height = viewHeight;
Vaibhav Jani 2015年

3
如何找出adapterItemSize?
droidster.me,2015年

2
@JoakimEngstrom adapterItemSize变量是什么?
IgorGanapolsky

1
避免在滚动视图内使用回收器视图,因为滚动视图为其子空间提供了无限的空间。这将导致将wrap_content作为高度的回收器视图在垂直方向上进行无限测量(直到回收器视图的最后一项)。而不是在滚动视图中使用回收者视图,而只能使用具有不同物料类型的回收者视图。通过此实现,滚动视图的子级将充当视图类型。处理回收器视图内的那些视图类型。
abhishesh

28

如果为RecyclerView设置固定高度对某人(例如我)不起作用,这是我添加到固定高度解决方案中的内容:

mRecyclerView.addOnItemTouchListener(new RecyclerView.OnItemTouchListener() {
    @Override
    public boolean onInterceptTouchEvent(RecyclerView rv, MotionEvent e) {
        int action = e.getAction();
        switch (action) {
            case MotionEvent.ACTION_MOVE:
                rv.getParent().requestDisallowInterceptTouchEvent(true);
                break;
        }
        return false;
    }

    @Override
    public void onTouchEvent(RecyclerView rv, MotionEvent e) {

    }

    @Override
    public void onRequestDisallowInterceptTouchEvent(boolean disallowIntercept) {

    }
});

1
确实,这对我来说效果很好。有了这个,我就能够上下移动滚动视图,并且当我选择要滚动的recyclerview时,它的优先级高于滚动视图。谢谢你的提示
PGMacDesign

1
它也对我有用,只需确保在滚动视图的直接子级上使用getParent
BigBen3216

该方法也适用于氰基莫德分布。cyanogenmod上的固定高度解决方案有效,但前提是固定高度是列表中所有项目的绝对高度,这首先证明了使用recyclerview的重要性。已投票。
HappyKatz

我还需要recyclerView.setNestedScrollingEnabled(false);
Analizer 2013年


15

只要RecyclerView自身不滚动,就可以将其放入ScrollView中。在这种情况下,将其设置为固定高度是有意义的。

正确的解决方案是wrap_content在RecyclerView高度上使用,然后实现可正确处理包装的自定义LinearLayoutManager。

将此LinearLayoutManager复制到您的项目中:https : //github.com/serso/android-linear-layout-manager/blob/master/lib/src/main/java/org/solovyev/android/views/llm/LinearLayoutManager.java

然后包装RecyclerView:

<android.support.v7.widget.RecyclerView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>

并像这样设置:

    RecyclerView list = (RecyclerView)findViewById(R.id.list);
    list.setHasFixedSize(true);
    list.setLayoutManager(new com.example.myapp.LinearLayoutManager(list.getContext()));
    list.setAdapter(new MyViewAdapter(data));

编辑:这可能会导致滚动复杂化,因为RecyclerView可以窃取ScrollView的触摸事件。我的解决方案是完全放弃RecyclerView并使用LinearLayout,以编程方式填充子视图,然后将它们添加到布局中。


4
您不能在recyclerview上调用setNestedScrollingEnabled(false)吗?
Eshaan 2015年

14

对于ScrollView,您可以按以下方式使用fillViewport=true和制作layout_height="match_parent",并将回收站视图放入其中:

<ScrollView
    android:fillViewport="true"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_below="@+id/llOptions">
          <android.support.v7.widget.RecyclerView
            android:id="@+id/rvList"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            />
</ScrollView>

无需通过代码进一步调整高度。


使用v23.2.1测试工作正常。正在使用它在recyclerview上方添加布局。
winsontan520 '16

只是RecyclerView滚动而ScrollView不滚动
Samad

13

RecyclerView手动计算高度并不是很好,最好是使用自定义LayoutManager

出现上述问题的原因是,当在另一个视图中添加子视图时,如果滚动视图的任何滚动视图的滚动高度(ListView,,)都无法计算其高度。因此,覆盖其方法将解决此问题。GridViewRecyclerViewonMeasure

请使用以下内容替换默认布局管理器:

public class MyLinearLayoutManager extends android.support.v7.widget.LinearLayoutManager {

private static boolean canMakeInsetsDirty = true;
private static Field insetsDirtyField = null;

private static final int CHILD_WIDTH = 0;
private static final int CHILD_HEIGHT = 1;
private static final int DEFAULT_CHILD_SIZE = 100;

private final int[] childDimensions = new int[2];
private final RecyclerView view;

private int childSize = DEFAULT_CHILD_SIZE;
private boolean hasChildSize;
private int overScrollMode = ViewCompat.OVER_SCROLL_ALWAYS;
private final Rect tmpRect = new Rect();

@SuppressWarnings("UnusedDeclaration")
public MyLinearLayoutManager(Context context) {
    super(context);
    this.view = null;
}

@SuppressWarnings("UnusedDeclaration")
public MyLinearLayoutManager(Context context, int orientation, boolean reverseLayout) {
    super(context, orientation, reverseLayout);
    this.view = null;
}

@SuppressWarnings("UnusedDeclaration")
public MyLinearLayoutManager(RecyclerView view) {
    super(view.getContext());
    this.view = view;
    this.overScrollMode = ViewCompat.getOverScrollMode(view);
}

@SuppressWarnings("UnusedDeclaration")
public MyLinearLayoutManager(RecyclerView view, int orientation, boolean reverseLayout) {
    super(view.getContext(), orientation, reverseLayout);
    this.view = view;
    this.overScrollMode = ViewCompat.getOverScrollMode(view);
}

public void setOverScrollMode(int overScrollMode) {
    if (overScrollMode < ViewCompat.OVER_SCROLL_ALWAYS || overScrollMode > ViewCompat.OVER_SCROLL_NEVER)
        throw new IllegalArgumentException("Unknown overscroll mode: " + overScrollMode);
    if (this.view == null) throw new IllegalStateException("view == null");
    this.overScrollMode = overScrollMode;
    ViewCompat.setOverScrollMode(view, overScrollMode);
}

public static int makeUnspecifiedSpec() {
    return View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED);
}

@Override
public void onMeasure(RecyclerView.Recycler recycler, RecyclerView.State state, int widthSpec, int heightSpec) {
    final int widthMode = View.MeasureSpec.getMode(widthSpec);
    final int heightMode = View.MeasureSpec.getMode(heightSpec);

    final int widthSize = View.MeasureSpec.getSize(widthSpec);
    final int heightSize = View.MeasureSpec.getSize(heightSpec);

    final boolean hasWidthSize = widthMode != View.MeasureSpec.UNSPECIFIED;
    final boolean hasHeightSize = heightMode != View.MeasureSpec.UNSPECIFIED;

    final boolean exactWidth = widthMode == View.MeasureSpec.EXACTLY;
    final boolean exactHeight = heightMode == View.MeasureSpec.EXACTLY;

    final int unspecified = makeUnspecifiedSpec();

    if (exactWidth && exactHeight) {
        // in case of exact calculations for both dimensions let's use default "onMeasure" implementation
        super.onMeasure(recycler, state, widthSpec, heightSpec);
        return;
    }

    final boolean vertical = getOrientation() == VERTICAL;

    initChildDimensions(widthSize, heightSize, vertical);

    int width = 0;
    int height = 0;

    // it's possible to get scrap views in recycler which are bound to old (invalid) adapter entities. This
    // happens because their invalidation happens after "onMeasure" method. As a workaround let's clear the
    // recycler now (it should not cause any performance issues while scrolling as "onMeasure" is never
    // called whiles scrolling)
    recycler.clear();

    final int stateItemCount = state.getItemCount();
    final int adapterItemCount = getItemCount();
    // adapter always contains actual data while state might contain old data (f.e. data before the animation is
    // done). As we want to measure the view with actual data we must use data from the adapter and not from  the
    // state
    for (int i = 0; i < adapterItemCount; i++) {
        if (vertical) {
            if (!hasChildSize) {
                if (i < stateItemCount) {
                    // we should not exceed state count, otherwise we'll get IndexOutOfBoundsException. For such items
                    // we will use previously calculated dimensions
                    measureChild(recycler, i, widthSize, unspecified, childDimensions);
                } else {
                    logMeasureWarning(i);
                }
            }
            height += childDimensions[CHILD_HEIGHT];
            if (i == 0) {
                width = childDimensions[CHILD_WIDTH];
            }
            if (hasHeightSize && height >= heightSize) {
                break;
            }
        } else {
            if (!hasChildSize) {
                if (i < stateItemCount) {
                    // we should not exceed state count, otherwise we'll get IndexOutOfBoundsException. For such items
                    // we will use previously calculated dimensions
                    measureChild(recycler, i, unspecified, heightSize, childDimensions);
                } else {
                    logMeasureWarning(i);
                }
            }
            width += childDimensions[CHILD_WIDTH];
            if (i == 0) {
                height = childDimensions[CHILD_HEIGHT];
            }
            if (hasWidthSize && width >= widthSize) {
                break;
            }
        }
    }

    if (exactWidth) {
        width = widthSize;
    } else {
        width += getPaddingLeft() + getPaddingRight();
        if (hasWidthSize) {
            width = Math.min(width, widthSize);
        }
    }

    if (exactHeight) {
        height = heightSize;
    } else {
        height += getPaddingTop() + getPaddingBottom();
        if (hasHeightSize) {
            height = Math.min(height, heightSize);
        }
    }

    setMeasuredDimension(width, height);

    if (view != null && overScrollMode == ViewCompat.OVER_SCROLL_IF_CONTENT_SCROLLS) {
        final boolean fit = (vertical && (!hasHeightSize || height < heightSize))
                || (!vertical && (!hasWidthSize || width < widthSize));

        ViewCompat.setOverScrollMode(view, fit ? ViewCompat.OVER_SCROLL_NEVER : ViewCompat.OVER_SCROLL_ALWAYS);
    }
}

private void logMeasureWarning(int child) {
    if (BuildConfig.DEBUG) {
        Log.w("MyLinearLayoutManager", "Can't measure child #" + child + ", previously used dimensions will be reused." +
                "To remove this message either use #setChildSize() method or don't run RecyclerView animations");
    }
}

private void initChildDimensions(int width, int height, boolean vertical) {
    if (childDimensions[CHILD_WIDTH] != 0 || childDimensions[CHILD_HEIGHT] != 0) {
        // already initialized, skipping
        return;
    }
    if (vertical) {
        childDimensions[CHILD_WIDTH] = width;
        childDimensions[CHILD_HEIGHT] = childSize;
    } else {
        childDimensions[CHILD_WIDTH] = childSize;
        childDimensions[CHILD_HEIGHT] = height;
    }
}

@Override
public void setOrientation(int orientation) {
    // might be called before the constructor of this class is called
    //noinspection ConstantConditions
    if (childDimensions != null) {
        if (getOrientation() != orientation) {
            childDimensions[CHILD_WIDTH] = 0;
            childDimensions[CHILD_HEIGHT] = 0;
        }
    }
    super.setOrientation(orientation);
}

public void clearChildSize() {
    hasChildSize = false;
    setChildSize(DEFAULT_CHILD_SIZE);
}

public void setChildSize(int childSize) {
    hasChildSize = true;
    if (this.childSize != childSize) {
        this.childSize = childSize;
        requestLayout();
    }
}

private void measureChild(RecyclerView.Recycler recycler, int position, int widthSize, int heightSize, int[] dimensions) {
    final View child;
    try {
        child = recycler.getViewForPosition(position);
    } catch (IndexOutOfBoundsException e) {
        if (BuildConfig.DEBUG) {
            Log.w("MyLinearLayoutManager", "MyLinearLayoutManager doesn't work well with animations. Consider switching them off", e);
        }
        return;
    }

    final RecyclerView.LayoutParams p = (RecyclerView.LayoutParams) child.getLayoutParams();

    final int hPadding = getPaddingLeft() + getPaddingRight();
    final int vPadding = getPaddingTop() + getPaddingBottom();

    final int hMargin = p.leftMargin + p.rightMargin;
    final int vMargin = p.topMargin + p.bottomMargin;

    // we must make insets dirty in order calculateItemDecorationsForChild to work
    makeInsetsDirty(p);
    // this method should be called before any getXxxDecorationXxx() methods
    calculateItemDecorationsForChild(child, tmpRect);

    final int hDecoration = getRightDecorationWidth(child) + getLeftDecorationWidth(child);
    final int vDecoration = getTopDecorationHeight(child) + getBottomDecorationHeight(child);

    final int childWidthSpec = getChildMeasureSpec(widthSize, hPadding + hMargin + hDecoration, p.width, canScrollHorizontally());
    final int childHeightSpec = getChildMeasureSpec(heightSize, vPadding + vMargin + vDecoration, p.height, canScrollVertically());

    child.measure(childWidthSpec, childHeightSpec);

    dimensions[CHILD_WIDTH] = getDecoratedMeasuredWidth(child) + p.leftMargin + p.rightMargin;
    dimensions[CHILD_HEIGHT] = getDecoratedMeasuredHeight(child) + p.bottomMargin + p.topMargin;

    // as view is recycled let's not keep old measured values
    makeInsetsDirty(p);
    recycler.recycleView(child);
}

private static void makeInsetsDirty(RecyclerView.LayoutParams p) {
    if (!canMakeInsetsDirty) {
        return;
    }
    try {
        if (insetsDirtyField == null) {
            insetsDirtyField = RecyclerView.LayoutParams.class.getDeclaredField("mInsetsDirty");
            insetsDirtyField.setAccessible(true);
        }
        insetsDirtyField.set(p, true);
    } catch (NoSuchFieldException e) {
        onMakeInsertDirtyFailed();
    } catch (IllegalAccessException e) {
        onMakeInsertDirtyFailed();
    }
}

private static void onMakeInsertDirtyFailed() {
    canMakeInsetsDirty = false;
    if (BuildConfig.DEBUG) {
        Log.w("MyLinearLayoutManager", "Can't make LayoutParams insets dirty, decorations measurements might be incorrect");
    }
}
}

将数据设置为适配器时如何调用此类?
米兰·加耶拉'16

11

试试这个。答案很晚。但是,将来一定可以帮助任何人。

将您的Scrollview设置为NestedScrollView

<android.support.v4.widget.NestedScrollView>
 <android.support.v7.widget.RecyclerView>
</android.support.v7.widget.RecyclerView>
</android.support.v4.widget.NestedScrollView>

在您的Recyclerview中

recyclerView.setNestedScrollingEnabled(false); 
recyclerView.setHasFixedSize(false);

8
在NestedScrollView中使用RecyclerView会为列表中的每个项目调用onBindView,即使该项目不可见。这个问题有什么解决办法吗?
thedarkpassenger

8

更新:这个答案现在已经过时了,因为像NestedScrollView和RecyclerView这样的小部件支持嵌套滚动。

您永远不要将可滚动视图放在另一个可滚动视图中!

我建议您制作主布局回收站视图,并将您的视图作为回收站视图的项目。

看一下这个示例,它展示了如何在回收站视图适配器中使用多个视图。 链接到示例


我的页面上有一个以上的回收站,还有其他方法可以说服吗?诸如instagramGoogle的部分评论之类的东西,当您单击更多评论
Ashkan

使它成为一个单一的recyclerView并把你的意见,项目为回收
EC84B4

6
废话 您可以嵌套RecyclerViews就好了。
IgorGanapolsky

这个答案现在已经过时了。我们有NestedScrollView之类的东西,可以嵌套嵌套的可滚​​动视图。嵌套的RecyclerViews现在也可以使用。
科里·霍恩

7

如果你把RecyclerView里面NestedScrollView并启用recyclerView.setNestedScrollingEnabled(false);,将滚动运作良好
但是,有一个问题

RecyclerView 不要回收

例如,您的RecyclerView(内部NestedScrollViewScrollView)有100个项目。
Activity启动,100项将创建onCreateViewHolderonBindViewHolder100项目都将在同一时间调用)。
例如,对于每个项目,您将从API =>创建的活动中加载大图像->将加载100张图像。
它使启动活动缓慢而滞后。
可能的解决方案
-考虑使用RecyclerView多种类型。

但是,如果你的情况,也有只在少数项目RecyclerView回收不回收不影响性能的很多,你可以使用RecyclerView里面ScrollView的简单


显示即使在ScollView内部,如何使RecyclerView回收?谢谢!
骗子

2
@Liar,目前无法RecyclerView将其放入后进行回收ScrollView。如果您想回收利用,请考虑另一种方法(例如使用具有多种类型的RecyclerView)
Phan Van Linh

4

您可以使用以下方式之一:

将此行添加到您的recyclerView xml视图中:

        android:nestedScrollingEnabled="false"

尝试一下,recyclerview将以灵活的高度平滑滚动

希望这有所帮助。


2

看来NestedScrollView确实可以解决问题。我已经测试过使用以下布局:

<android.support.v4.widget.NestedScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/dummy_text"
        />

    <android.support.v7.widget.CardView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="16dp"
        android:layout_marginRight="16dp"
        >
        <android.support.v7.widget.RecyclerView
            android:id="@+id/recycler_view"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

    </android.support.v7.widget.CardView>

</LinearLayout>

而且没有问题


兄弟,仍然有相同的问题从Scrollview更改为NestedScrollview之后。
MohanRaj S

mmm ...您能分享一些代码吗...我的问题为零,但您永远都不会知道这种问题
royB 2016年

我如何通过电子邮件或堆栈溢出共享我的代码
MohanRaj S

2
使用此代码对列表中的所有项目调用onBindView,即使这些项目在列表中不可见。这违反了recyclerview的目的。
thedarkpassenger

2

我使用CustomLayoutManager禁用RecyclerView Scrolling。也不要将Recycler View用作WrapContent,将其用作0dp,Weight = 1

public class CustomLayoutManager extends LinearLayoutManager {
    private boolean isScrollEnabled;

    // orientation should be LinearLayoutManager.VERTICAL or HORIZONTAL
    public CustomLayoutManager(Context context, int orientation, boolean isScrollEnabled) {
        super(context, orientation, false);
        this.isScrollEnabled = isScrollEnabled;
    }

    @Override
    public boolean canScrollVertically() {
        //Similarly you can customize "canScrollHorizontally()" for managing horizontal scroll
        return isScrollEnabled && super.canScrollVertically();
    }
}

在RecyclerView中使用CustomLayoutManager:

CustomLayoutManager mLayoutManager = new CustomLayoutManager(getBaseActivity(), CustomLayoutManager.VERTICAL, false);
        recyclerView.setLayoutManager(mLayoutManager);
        ((DefaultItemAnimator) recyclerView.getItemAnimator()).setSupportsChangeAnimations(false); 
        recyclerView.setAdapter(statsAdapter);

UI XML:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/background_main"
    android:fillViewport="false">


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

        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <edu.aku.family_hifazat.libraries.mpchart.charts.PieChart
                android:id="@+id/chart1"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginBottom="@dimen/x20dp"
                android:minHeight="@dimen/x300dp">

            </edu.aku.family_hifazat.libraries.mpchart.charts.PieChart>


        </FrameLayout>

        <android.support.v7.widget.RecyclerView
            android:id="@+id/recyclerView"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1">


        </android.support.v7.widget.RecyclerView>


    </LinearLayout>


</ScrollView>

2

我遇到了同样的问题。那就是我尝试过的并且有效。我正在共享我的xml和Java代码。希望这会帮助某人。

这是XML

<?xml version="1.0" encoding="utf-8"?>

< NestedScrollView
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <ImageView
            android:id="@+id/iv_thumbnail"
            android:layout_width="match_parent"
            android:layout_height="200dp" />

        <TextView
            android:id="@+id/tv_description"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Description" />

        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Buy" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Reviews" />
        <android.support.v7.widget.RecyclerView
            android:id="@+id/rc_reviews"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

        </android.support.v7.widget.RecyclerView>

    </LinearLayout>
</NestedScrollView >

这是相关的Java代码。它像一种魅力。

LinearLayoutManager linearLayoutManager = new LinearLayoutManager(this);
linearLayoutManager.setOrientation(LinearLayoutManager.VERTICAL);
recyclerView.setLayoutManager(linearLayoutManager);
recyclerView.setNestedScrollingEnabled(false);

那么RecyclerView下面的布局呢?
Tapa Save

效果也不错。您只需要使用。NestedScrollView而不是滚动视图
Zeeshan Shabbir

是的,只有NestedScrollView。但是,使用NestedScrollView + RecycleView的解决方案调用RecyclerView的速度非常慢(我认为是要计算RecyclerView之后的第一个视图的Y位置的位置)
Tapa保存


0

实际上,的主要目的RecyclerView是补偿ListViewScrollView。而不是实际执行操作:在中包含RecyclerViewa ScrollView,我建议仅包含一个RecyclerView可以处理多种类型孩子的对象。


1
仅在您将孩子滚动出视线后就可以对其进行垃圾收集的情况下,此方法才有效。如果您的孩子是mapFragments或streetviews,则没有意义,因为每次他们滚动到recyclerview时,它们都被迫重新加载。将它们嵌入滚动视图,然后在底部生成一个recyclerview更为有意义。
西蒙(Simon)

1
@Simon在ViewHolder中有一个方便的setIsRecyclable()
ernazm 2015年

RecyclerView替换了ListView,但这并不意味着替换ScrollView。
cyroxis '16

这个评论应该更好。这是一种解决方案,甚至比公认的更好。
凯王

0

首先,您应该使用NestedScrollView而不是ScrollView并放入RecyclerView内部NestedScrollView

使用自定义布局类来测量屏幕的高度和宽度:

public class CustomLinearLayoutManager extends LinearLayoutManager {

public CustomLinearLayoutManager(Context context, int orientation, boolean reverseLayout) {
    super(context, orientation, reverseLayout);
}

private int[] mMeasuredDimension = new int[2];

@Override
public void onMeasure(RecyclerView.Recycler recycler, RecyclerView.State state,
                      int widthSpec, int heightSpec) {
    final int widthMode = View.MeasureSpec.getMode(widthSpec);
    final int heightMode = View.MeasureSpec.getMode(heightSpec);
    final int widthSize = View.MeasureSpec.getSize(widthSpec);
    final int heightSize = View.MeasureSpec.getSize(heightSpec);
    int width = 0;
    int height = 0;
    for (int i = 0; i < getItemCount(); i++) {
        if (getOrientation() == HORIZONTAL) {
            measureScrapChild(recycler, i,
                    View.MeasureSpec.makeMeasureSpec(i, View.MeasureSpec.UNSPECIFIED),
                    heightSpec,
                    mMeasuredDimension);

            width = width + mMeasuredDimension[0];
            if (i == 0) {
                height = mMeasuredDimension[1];
            }
        } else {
            measureScrapChild(recycler, i,
                    widthSpec,
                    View.MeasureSpec.makeMeasureSpec(i, View.MeasureSpec.UNSPECIFIED),
                    mMeasuredDimension);
            height = height + mMeasuredDimension[1];
            if (i == 0) {
                width = mMeasuredDimension[0];
            }
        }
    }
    switch (widthMode) {
        case View.MeasureSpec.EXACTLY:
            width = widthSize;
        case View.MeasureSpec.AT_MOST:
        case View.MeasureSpec.UNSPECIFIED:
    }

    switch (heightMode) {
        case View.MeasureSpec.EXACTLY:
            height = heightSize;
        case View.MeasureSpec.AT_MOST:
        case View.MeasureSpec.UNSPECIFIED:
    }

    setMeasuredDimension(width, height);
}

private void measureScrapChild(RecyclerView.Recycler recycler, int position, int widthSpec,
                               int heightSpec, int[] measuredDimension) {
    View view = recycler.getViewForPosition(position);
    recycler.bindViewToPosition(view, position);
    if (view != null) {
        RecyclerView.LayoutParams p = (RecyclerView.LayoutParams) view.getLayoutParams();
        int childWidthSpec = ViewGroup.getChildMeasureSpec(widthSpec,
                getPaddingLeft() + getPaddingRight(), p.width);
        int childHeightSpec = ViewGroup.getChildMeasureSpec(heightSpec,
                getPaddingTop() + getPaddingBottom(), p.height);
        view.measure(childWidthSpec, childHeightSpec);
        measuredDimension[0] = view.getMeasuredWidth() + p.leftMargin + p.rightMargin;
        measuredDimension[1] = view.getMeasuredHeight() + p.bottomMargin + p.topMargin;
        recycler.recycleView(view);
    }
}
}

并在以下活动/片段中实现以下代码RecyclerView

 final CustomLinearLayoutManager layoutManager = new CustomLinearLayoutManager(this, LinearLayoutManager.VERTICAL, false);

    recyclerView.setLayoutManager(layoutManager);
    recyclerView.setAdapter(mAdapter);

    recyclerView.setNestedScrollingEnabled(false); // Disables scrolling for RecyclerView, CustomLinearLayoutManager used instead of MyLinearLayoutManager
    recyclerView.setHasFixedSize(false);

    recyclerView.addOnScrollListener(new RecyclerView.OnScrollListener() {
        @Override
        public void onScrolled(RecyclerView recyclerView, int dx, int dy) {
            super.onScrolled(recyclerView, dx, dy);

            int visibleItemCount = layoutManager.getChildCount();
            int totalItemCount = layoutManager.getItemCount();
            int lastVisibleItemPos = layoutManager.findLastVisibleItemPosition();
            Log.i("getChildCount", String.valueOf(visibleItemCount));
            Log.i("getItemCount", String.valueOf(totalItemCount));
            Log.i("lastVisibleItemPos", String.valueOf(lastVisibleItemPos));
            if ((visibleItemCount + lastVisibleItemPos) >= totalItemCount) {
                Log.i("LOG", "Last Item Reached!");
            }
        }
    });

0

如果RecyclerView在ScrollView中仅显示一行。您只需要将行的高度设置为即可android:layout_height="wrap_content"


0

您还可以覆盖LinearLayoutManager以使recyclerview顺利滚动

@Override
    public boolean canScrollVertically(){
        return false;
    }

0

抱歉,晚会很晚,但是似乎还有另一种解决方案可以完美地解决您提到的情况。

如果您在回收器视图中使用回收器视图,则看起来工作正常。我亲自尝试并使用过它,它似乎丝毫不慢,也不生涩。现在,我不确定这是否是一个好习惯,但是嵌套多个回收站视图,甚至嵌套的滚动视图也会减慢速度。但这似乎很好。请试一试。我敢肯定,嵌套将与此完美。


0

解决该问题的另一种方法是在ConstraintLayout内部使用ScrollView

<ScrollView>
  <ConstraintLayout> (this is the only child of ScrollView)
    <...Some Views...>
    <RecyclerView> (layout_height=wrap_content)
    <...Some Other Views...>

但是我仍然会坚持androidx.core.widget.NestedScrollView 杨培勇提出方法


-2

**对我
有用的解决方案使用高度为wrap_content的NestedScrollView

<br> RecyclerView 
                android:layout_width="match_parent"<br>
                android:layout_height="wrap_content"<br>
                android:nestedScrollingEnabled="false"<br>
                  app:layoutManager="android.support.v7.widget.LinearLayoutManager"
                tools:targetApi="lollipop"<br><br> and view holder layout 
 <br> android:layout_width="match_parent"<br>
        android:layout_height="wrap_content"

//您的行内容在这里


对类似答案的一些评论说,禁用嵌套滚动会破坏使用RecyclerView的目的,即它不会回收视图。不确定如何确认。
jk7

1
设置nestedScrollingEnabled =“ false”会使RecyclerView至少在我的设置(NestedScrollView内部的RecyclerView)中不回收其视图。通过将RecyclerListener添加到RecyclerView并在其onViewRecycled()方法内设置断点来确认。
jk7
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.