gpt4 book ai didi

android - 如何使用滚动 fragment 容器实现通用布局?

转载 作者:行者123 更新时间:2023-11-30 04:55:19 26 4
gpt4 key购买 nike

我有一个用于单个 fragment 的 Activity 的通用布局:

<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">

<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">

<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:background="@color/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />

</com.google.android.material.appbar.AppBarLayout>

<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />

</androidx.coordinatorlayout.widget.CoordinatorLayout>

我的大部分 Activity 都重复使用此布局,只是插入不同的 fragment 。 fragment 由 ConstraintLayouts、LinearLayouts、RecyclerViews 等组成。如果 fragment 有 RecyclerView,则滚动效果很好。但是,如果它包含 LinearLayout 或 ConstraintLayout,我将无法滚动。如果我将 FrameLayout 包装在 NestedScrollView 中,那么我可以滚动包含 LinearLayout 或 ConstraintLayout 的 fragment ,但它会中断具有 RecyclerView 的 fragment 中的回收:

<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">

<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />

</androidx.core.widget.NestedScrollView>

我怎样才能使我的通用布局保持通用并让它处理它可能包含的任何类型的 fragment 的滚动?

最佳答案

有一个NestedScrollView Child的属性,

setNestedScrollingEnabled(false)

但我强烈建议不要同时使用嵌套 ScrollView 和回收 View ,因为这可能会导致级联问题!我建议在 RecyclerView 中使用 ItemViewTypes 来处理多种 View 。只需添加一个具有 match_parent 宽度和高度的 RecyclerView。然后在您的回收器 View 适配器中覆盖 getItemViewType 并使用该位置来处理要膨胀的布局。

关于android - 如何使用滚动 fragment 容器实现通用布局?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59291666/

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