我有一个包含折叠工具栏的活动和一个带有FrameLayout
的嵌套滚动视图,我将片段放入其中。最初,我在其中放置一个带有 CardView 的FragmentA
。
效果很好。当我单击按钮时,我将FragmentB
替换为另一个包含 RecyclerView 的文件。
当我添加FragmentB
时,我无法滚动到列表的底部。
此视频显示问题: LINK TO VIDEO
主机活动布局:
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="340dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:fitsSystemWindows="true">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_scrollFlags="scroll|exitUntilCollapsed|enterAlwaysCollapsed"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginStart="48dp"
app:expandedTitleMarginEnd="64dp">
.........
......
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="fill_vertical"
android:fillViewport="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
>
<!-- the layout which will be the content of the activity (which will be hosted inside the drawer (NOT the list of the drawer)) -->
<FrameLayout
android:id="@+id/frame_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
>
</FrameLayout>
</android.support.v4.widget.NestedScrollView>
FragmentB布局:
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/contentView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<android.support.v7.widget.RecyclerView
android:id="@+id/rv_users"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<include
layout="@layout/view_progress"
/>
<include
layout="@layout/view_retry"
/>
<!--</LinearLayout>-->
</android.support.v4.widget.SwipeRefreshLayout>
答案 0 :(得分:5)
您将RecyclerView
放入NestedScrollView
我认为更好的解决方案是NestedScrollView
或RecyclerView
而不是两者,因为RecyclerView
已经在实施NestedScrollingChild
。
我的应用程序中有类似的布局。我做了同样的事情 - 将RecyclerView放到FrameLayout然后放在NestedScrollView中。停止正常工作。没有NestedScrollView,一切正常。
答案 1 :(得分:1)
两件事:
首先,如果您想在活动中滚动行为,则不必将片段容器嵌入NestedScrollView
。
将FrameLayout
直接放入具有layout_behavior
属性的协调器布局中,然后简单地将任何片段与滚动视图放在一起(并且它不必具有layout_behavior attr)。
所以在你的例子中你应该有片段:
FragmentA
在NestedScrollView中具有CardView布局
使用RecycipeView在SwipeRefreshLayout
FragmentB
其他问题是你在SwipeRefreshLayout
中放了一个以上的孩子,并且如文档中所述,它应该只有一个直接孩子。 source
答案 2 :(得分:0)
我认为这是卷轴问题,customview扩展了ListView或RecycleView。 这是我的解决方案:
public class RewriteListView extends ListView {
public RewriteListView(Context context) {
super(context);
}
public RewriteListView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public RewriteListView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,
MeasureSpec.AT_MOST);
super.onMeasure(widthMeasureSpec, expandSpec);
}
}
开心:)
答案 3 :(得分:0)
已经回答了!两个可滚动元素(例如问题中的RecycleView和NestedScrollView)无法一起工作。
修改您的活动布局。
<ParentLayout>
.......
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="340dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:fitsSystemWindows="true">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_scrollFlags="scroll|exitUntilCollapsed|enterAlwaysCollapsed"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginStart="48dp"
app:expandedTitleMarginEnd="64dp">
.........
......
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
//THIS FRAGMENT WILL BE REPLACED!
<FrameLayout
android:id="@+id/frame_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
>
</FrameLayout>
.......
</ParentLayout>
并且默认情况下,在此活动的第一次运行中 - 将上面的FrameLayout替换为 - 第一个使用NestedScrollView的片段(您需要创建新的片段以进行替换),然后在您的问题中单击替换为Fragment。