gpt4 book ai didi

android - 将协调器布局与回收器 View 一起使用

转载 作者:太空宇宙 更新时间:2023-11-03 13:50:06 25 4
gpt4 key购买 nike

我怎样才能使回收站 View 与 viewpager 一起移动回收站 View 不随 View 寻呼机移动。我使用了带有折叠工具栏布局的协调器布局,但回收器 View 仍然独立滚动,而不是与 viewpager 一起滚动。查看寻呼机正在崩溃,但仅在该特定区域..

 <?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true">
<android.support.design.widget.CollapsingToolbarLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginStart="48dp"
app:expandedTitleMarginEnd="64dp"
android:fitsSystemWindows="true">
<android.support.v4.view.ViewPager
android:layout_width="match_parent"
android:scrollbars="vertical"
android:layout_height="150dp"
android:fitsSystemWindows="true"
app:layout_collapseMode="parallax"
android:id="@+id/slider_pager">
</android.support.v4.view.ViewPager>
</android.support.design.widget.CollapsingToolbarLayout>

</android.support.design.widget.AppBarLayout>

<android.support.v4.widget.NestedScrollView
android:id="@+id/scroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:fillViewport="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none"
android:id="@+id/list_hotels"
android:background="@color/back1">
</android.support.v7.widget.RecyclerView>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>

请帮我把它们一起上下移动。

最佳答案

应用栏/工具栏部分看起来不错。但是,您有一个 RecyclerView 包裹在 NestedScrollView 中,这是不必要的。

完全删除 NestedScrollView 并像这样声明您的 RecyclerView:

        <android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none"
android:id="@+id/list_hotels"
android:background="@color/back1"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

如果您仍有问题,请使用新的 XML 布局更新您的问题。

关于android - 将协调器布局与回收器 View 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36137337/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com