android.support.v4.widget.NestedScrollView嵌套RecyclerView时,会遇到不显示最顶端内容,需要给NestedScrollView的子控件设置属性
android:descendantFocusability="blocksDescendants"
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/rlTop"
android:fillViewport="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:layout_width="match_parent"
android:descendantFocusability="blocksDescendants"
android:layout_height="match_parent"
android:orientation="vertical">
</LinearLayout>
</androidx.core.widget.NestedScrollView>