gpt4 book ai didi

android - BottomSheetDialogFragment - 允许滚动子项

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:13:52 35 4
gpt4 key购买 nike

我有一个带有 RecyclerViewBottomSheetDialogFragment。问题是,我想禁用 BottomSheetDialogFragment 的拖动关闭功能,只要 RecyclerView 没有向上滚动(目前我无法滚动我的 RecyclerView 因为尝试将始终关闭 BottomSheetDialogFragment)。有什么想法可以实现吗?

最佳答案

BottomSheetDialog中的RecyclerView滚动问题可以通过这种方式解决。

来自:https://android.jlelse.eu/recyclerview-within-nestedscrollview-scrolling-issue-3180b5ad2542

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<android.support.v4.widget.NestedScrollView
android:id="@+id/nestedScrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:overScrollMode="never">


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

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

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

关于android - BottomSheetDialogFragment - 允许滚动子项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40904724/

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