我在NestedScrollView中使用Header實現了RecyclerView。但我得到滾動問題的位置。當活動暫停然後恢復時,位置始終是自動滾動焦點到RecyclerView。在NestedScrollView中執行RecyclerView時發出位置滾動
我的XML:
<android.support.v4.widget.NestedScrollView
android:id="@+id/scroll"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="4dp">
<LinearLayout
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="50dp"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Header"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textStyle="bold" />
</LinearLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/grid_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/header"
android:layout_gravity="center_horizontal|top" />
</RelativeLayout>
</android.support.v4.widget.NestedScrollView>
那麼如何解決這個問題?
嗨,我一直停留在同樣的問題了一個多星期了。你有沒有找到解決辦法呢? :) – edwinj
@edwinj http://stackoverflow.com/a/36645305/842607 –