我的布局有些复杂,我想让一部分布局固定/固定。要隐藏/显示其他内容,我需要检测recyclerview滚动。我在考虑整个布局滚动而不是recyclerview。我尝试将nestedscrolling设置为true / false,但两者都没有改变。其他解决方案无效。我无法使用触摸侦听器,因为我需要检测何时到达了recyclerview中的最后一个项目。
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/app_bar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/white">
<com.google.android.material.appbar.CollapsingToolbarLayout
android:id="@+id/collapse_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/moodyWhite"
android:elevation="52dp"
android:outlineProvider="none"
app:layout_collapseMode="pin">
<TextView
android:id="@+id/station_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="30dp"
android:layout_marginTop="20dp"
android:text="stations"
android:textAllCaps="true"
android:textColor="@color/headerColor"
android:textSize="15sp"
android:textStyle="bold"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/station_header_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="@{() -> viewModelFavorite.sortStations()}"
android:text="@string/favorite_station_by_date"
android:textAllCaps="true"
android:textColor="@color/headerColor"
android:textSize="12sp"
android:textStyle="bold"
app:layout_constraintBottom_toBottomOf="@id/station_text"
app:layout_constraintEnd_toStartOf="@id/station_arrow"
app:layout_constraintTop_toTopOf="@id/station_text" />
<ImageView
android:id="@+id/station_arrow"
android:layout_width="16dp"
android:layout_height="16dp"
android:layout_marginEnd="30dp"
android:src="@drawable/green_arrow_right"
app:layout_constraintBottom_toBottomOf="@id/station_text"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="@id/station_text" />
<View
android:id="@+id/split1"
android:layout_width="0dp"
android:layout_height="3dp"
android:layout_marginLeft="30dp"
android:layout_marginTop="15dp"
android:layout_marginRight="30dp"
android:background="@color/headerColor"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/station_text" />
</androidx.constraintlayout.widget.ConstraintLayout>
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="52dp">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/stations_list"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginLeft="30dp"
android:layout_marginTop="15dp"
android:layout_marginRight="30dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:itemCount="9"
android:focusableInTouchMode="true"
tools:listitem="@layout/item_fave_station" />
</androidx.constraintlayout.widget.ConstraintLayout>
</com.google.android.material.appbar.CollapsingToolbarLayout>
要检测我正在使用的滚动,
binding.stationsList.addOnScrollListener(new RecyclerView.OnScrollListener() {
@Override
public void onScrolled(@NonNull RecyclerView recyclerView, int dx, int dy) {
Log.d(TAG, "onScrolled");
super.onScrolled(recyclerView, dx, dy);
}
});