我有一个包含2个回收站视图的父NestedScrollView。一个滚动水平,另一个滚动垂直。如何检测滚动了哪一个?下面是我的xml布局。
我无法从NestedScrollView中提取我的recyclerviews,因为此嵌套滚动视图正在协调器布局中使用,因此我必须将我的recyclerviews保留在NestedScrollview中。
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:overScrollMode="never"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/scrollableContent"
android:paddingTop="24dp"
android:clipToPadding="false">
<TextView
style="@style/GatewayLabel"
android:id="@+id/privateGatewaysLabel"
android:text="@string/private_gateways_label"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/privateGatewaysRecycler"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:paddingEnd="20dp"
android:paddingStart="20dp"
android:clipToPadding="false"
android:overScrollMode="never"
android:layout_marginTop="16dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/privateGatewaysLabel" />
<TextView
android:id="@+id/sharedGatewayLabel"
style="@style/GatewayLabel"
android:layout_marginTop="16dp"
android:text="@string/shared_gateways_label"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/privateGatewaysRecycler" />
<androidx.recyclerview.widget.RecyclerView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:id="@+id/sharedGatewaysRecycler"
android:overScrollMode="never"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@id/sharedGatewayLabel" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.core.widget.NestedScrollView>
答案 0 :(得分:0)
您可以通过将此观察者添加到您的嵌套滚动视图对象中来进行检查,然后您可以对其进行操作
scrollView.getViewTreeObserver().addOnScrollChangedListener(new ViewTreeObserver.OnScrollChangedListener() {
@Override
public void onScrollChanged() {
Rect scrollBounds = new Rect();
scrollView.getHitRect(scrollBounds);
if (yourViews.getLocalVisibleRect(scrollBounds)) { //ditect if your views visibilty is in bound or not the
} else {
}
}
});
对于Recyclerviews滚动平滑度,可以使用
YourRecylerview.setNestedScrollingEnabled(false);