3

RecyclerViewデバイスを回転させたときに現在のスクロール位置を保持する方法に関する多くの提案を読みました。com.android.support:recyclerview-v7:23.0.+を使用すると、現在の位置が実際に に保存されることがわかりましたsavedInstanceState。こちらも復元されているようですが、「ある程度正しく」復元されているだけです。

私がこれを経験していること:ポートレートモードでリストの一番下までスクロールしてから、ランドスケープに切り替えます。現在の位置が正しく復元されました (もちろん、一部のアイテムは表示されません - スクロールを続けることができます)。

それ以上スクロールせずに縦向きに戻すと、復元された位置は、実際にあると思っていた位置よりも数項目上です。リストが一番下までスクロールされなくなりました

私の質問は、正しいスクロール位置を実際に保存して復元するために他にできることはありますか?

のレイアウトは次の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;
}
4

1 に答える 1

2

現在の API 24 と最新のサポート ライブラリに更新した後、それ以上コーディングしなくても、デフォルトですべてが期待どおりに機能することがわかりました...

于 2016-09-15T18:11:49.220 に答える