3
我已閱讀了關於如何在設備旋轉時保留RecyclerView
中當前滾動位置的許多建議。我現在發現當我用com.android.support:recyclerview-v7:23.0.+
時,當前位置是實際上保存在中的savedInstanceState
。它似乎也恢復了,但它只是「有點正確地」恢復。在RecyclerView中保留滾動位置
我遇到了這個問題:我在縱向模式下滾動到列表的底部,然後切換到橫向。當前位置恢復正確(當然,有些項目不可見 - 我可以繼續滾動)!
沒有任何進一步的滾動,我旋轉回肖像和恢復的位置是我實際以爲我會有的位置以上的幾個項目。 該列表不再滾動到底部。
我的問題是:還有什麼我可以做的實際存儲和恢復正確的滾動位置?
這是RecyclerView
的佈局:
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/swipeLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="...">
<android.support.v7.widget.RecyclerView
android:id="@+id/itemsView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical" />
</android.support.v4.widget.SwipeRefreshLayout>
這是單個項目縮短的佈局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="8dp"
android:paddingBottom="8dp"
android:paddingLeft="12dp"
android:paddingRight="12dp">
<!-- This linear layout aligns type indicator to the left and text content to the right -->
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
...
</LinearLayout>
</LinearLayout>
承載RecyclerView
所述片段具有以下代碼:
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
{
View v = inflater.inflate(R.layout.calendar_fragment, container, false);
ButterKnife.bind(this, v);
mSwipeRefreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
@Override
public void onRefresh() {
...
}
});
if (mLayoutManager == null)
{
mLayoutManager = new LinearLayoutManager(getActivity());
mLayoutManager.setOrientation(LinearLayoutManager.VERTICAL);
}
// Get cached information or access storage
if (savedInstanceState != null)
{
// Initialize the area and the adapter from the saved state
mArea = savedInstanceState.getParcelable("AREA");
Entry[] entries = (Entry[])savedInstanceState.getParcelableArray("ITEMS");
mDataAdapter = new MyAdapter(this, mArea, entries);
}
else
{
// Initialize the area and the adapter form scratch
mArea = getAreaByPreference();
mDataAdapter = new MyAdapter(this, mArea);
}
// Initialize the RecyclerView
mItemsView.setHasFixedSize(true);
mItemsView.setAdapter(mDataAdapter);
mItemsView.setLayoutManager(mLayoutManager);
return v;
}
你試過保存位置,然後使用'void scrollToPosition(int position)'? https://developer.android.com/reference/android/support/v7/widget/LinearLayoutManager.html#scrollToPosition(int) – Jonsmoke
不,我還沒有嘗試過,因爲我找到的所有其他解決方案建議讓'LinearLayoutManager'做它的事情挽救和恢復自己的狀態。 –
你見過這個答案嗎? http://stackoverflow.com/a/29166336/3658819 – Jonsmoke