gpt4 book ai didi

android - 带有两个 RecyclerView 的 CoordinatorLayout

转载 作者:行者123 更新时间:2023-11-29 19:46:51 27 4
gpt4 key购买 nike

我正在尝试在一个带有应用栏布局的 CoordinatorLayout 中使用两个 RecyclerView。但问题是,第二个 recyclerview 与第一个 recyclerview 重叠,第一个 recyclerview 应该低于第一个 recyclerview。我正在谷歌搜索,但没有合适的解决方案。CoordinatorLayout 是一个功能强大的 FrameLayout。

我的代码 fragment 如下:

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:fab="http://schemas.android.com/apk/res-auto"
android:id="@+id/layout_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">

<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="366dp"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/selfie_collasping_toolbar_background"
android:fitsSystemWindows="true"
app:contentScrim="@color/colorPrimary_selfie"
app:expandedTitleMarginBottom="255dp"
app:expandedTitleMarginStart="70dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:title="Check ins">

<RelativeLayout
android:id="@+id/collapsing_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="70dp"
android:fitsSystemWindows="true"
app:layout_collapseMode="parallax"
app:layout_scrollFlags="scroll|enterAlways|enterAlwaysCollapsed">

<ImageView
android:id="@+id/offer_gift"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginLeft="15dp"
android:layout_marginTop="5dp"
android:src="@mipmap/image" />

</RelativeLayout>

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

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

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">

<android.support.v7.widget.RecyclerView
android:id="@+id/RecyclerView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="3dp"
android:layout_marginLeft="3dp"
android:layout_marginRight="3dp"
android:layout_marginTop="15dp" />

<android.support.v7.widget.RecyclerView
android:id="@+id/RecyclerView2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/RecyclerView1"
android:layout_marginBottom="3dp"
android:layout_marginLeft="3dp"
android:layout_marginRight="3dp"
android:layout_marginTop="15dp" />
</RelativeLayout>

<com.getbase.floatingactionbutton.FloatingActionsMenu
android:id="@+id/fab"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="bottom|right">

---

</com.getbase.floatingactionbutton.FloatingActionsMenu>
</android.support.design.widget.CoordinatorLayout>

如果回收器 View 是 CoordinatorLayout 的主要 subview ,那么我将获得正确的回收器 View 行为。但是如果使用两个回收器 View 作为 CoordinatorLayout 的 subview ,那么两个回收器 View 就会发生碰撞。如果我在 recyclerview2 使用 layout_below,则数据不会显示 recyclerview2,即 CoordinatorLayout 滚动条滚动到仅 recyclerview1 数据...

最佳答案

<RelativeLayout
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">

<android.support.v7.widget.RecyclerView
android:id="@+id/RecyclerView1"
android:layout_height="wrap_content" />

<android.support.v7.widget.RecyclerView
android:id="@+id/RecyclerView2"
android:layout_height="wrap_content"
android:layout_below="@+id/RecyclerView1" />
</RelativeLayout>

为什么在这里使用 RelativeLayout?

您应该自己弄清楚哪个是滚动 View 。现在,您有:

  • RelativeLayout:不滚动。
  • RecyclerViewwrap_content 高度:它们也不会滚动,因为它们的高度就是它们的内容的高度。

所以你最终会得到两个大的 child (回收站),它们必须适合一个小的 parent (相对布局)。这个不成立。相反,请考虑使用像 NestedScrollView 这样的滚动父 View :

<android.support.v4.widget.NestedScrollView
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior”>
<LinearLayout
android:layout_height=“wrap_content”
android:orientation=“vertical”>

<android.support.v7.widget.RecyclerView
android:id="@+id/RecyclerView1"
android:layout_height="wrap_content" />
<android.support.v7.widget.RecyclerView
android:id="@+id/RecyclerView2"
android:layout_height="wrap_content" />

</LinearLayout>
</android.support.v4.widget.NestedScrollView>

关于android - 带有两个 RecyclerView 的 CoordinatorLayout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37436624/

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