在视图寻呼机中,我有几个片段,其中一个使用带有标题和 recyclerview 的嵌套滚动视图:
<android.support.v4.widget.NestedScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/scrollview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.m360.android.fragment.Members.MemberDetailsFragment">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingTop="20dp">
<header/>
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clipToPadding="false"
android:paddingTop="0dp" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
标签“header”代表了一个复杂的布局,我不想在这里发布它,因为它会大量扩展代码。
当我在选项卡之间切换时,它会滚动到回收站视图。标题是隐藏的,我必须向上滚动才能看到它。
关于是什么原因的任何想法?如果可以避免的话,我不想在适配器中使用类型。