gpt4 book ai didi

android - 滚动不适用于 BottomSheet 中的多个 RecyclerView

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:25:16 26 4
gpt4 key购买 nike

我使用 DialogFragment 方法实现了 BottomSheet。我在 BottomSheet 中有一个 TabLayoutViewPagerViewPager 托管 2 个页面,每个页面都包含一个 RecyclerView。第一个(Coffee 选项卡)RecyclerView 滚动正常。我现在遇到的问题是,对于第二个(牛奶选项卡),滚动条不起作用。知道我该如何解决这个问题吗?谢谢!

您可以使用我在此处创建的演示项目进行测试:https://github.com/choongyouqi/bottomsheet `

enter image description here

最佳答案

使用这个 View 作为 Root View :

import android.content.Context;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.widget.LinearLayout;

public class DisallowInterceptView extends LinearLayout {
public DisallowInterceptView(Context context) {
super(context);
requestDisallowInterceptTouchEvent(true);
}

public DisallowInterceptView(Context context, AttributeSet attrs) {
super(context, attrs);
requestDisallowInterceptTouchEvent(true);
}

public DisallowInterceptView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
requestDisallowInterceptTouchEvent(true);
}


public boolean dispatchTouchEvent(MotionEvent ev) {
getParent().requestDisallowInterceptTouchEvent(true);
return super.dispatchTouchEvent(ev);
}

@Override
public boolean onTouchEvent(MotionEvent event) {
switch (event.getAction()) {
case MotionEvent.ACTION_MOVE:
requestDisallowInterceptTouchEvent(true);
break;
case MotionEvent.ACTION_UP:
case MotionEvent.ACTION_CANCEL:
requestDisallowInterceptTouchEvent(false);
break;
}
return super.onTouchEvent(event);
}

}

然后在用于 bottmSheet 的布局中:

<?xml version="1.0" encoding="utf-8"?>
<com.your.package.DisallowInterceptView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:maxHeight="400dp"
android:minHeight="300dp"
android:orientation="vertical"
>

...
</LinearLayout>

</com.your.package.DisallowInterceptView>

关于android - 滚动不适用于 BottomSheet 中的多个 RecyclerView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39326321/

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