RecyclerView with StaggeredGridLayoutManager in ViewPager, arranges items automatically when going back to fragment

◇◆丶佛笑我妖孽 提交于 2021-01-28 04:55:22

问题


I am using Navigation component in my App, using google Advanced Sample(here). my problem is when going back to a fragment, the scrolling position does not lost but it rearranges items and moves highest visible items so that top of those item align to top of recyclerview. please see this:

before going to next fragment:

and after back to fragment:

this problem is matter because some times clicked item goes down and not seen until scroll down. how to prevent this behavior?

please consider:

  • this problem exist if using navigation component to change fragment. if start fragment using supportFragmentManager.beginTransaction() or start another activity and then go to this fragment it is OK. but if I navigate to another fragment using navigation component this problem is exist.(maybe because of recreating fragment)

  • also this problem exist if using fragment in ViewPager. i.e recyclerView is in a fragment that handle with ViewPagerAdapter and viewPager is in HomeFragment that opened with Navigation component. if recyclerView is in HomeFragment there is no problem.

  • no problem with LinearLayoutManager. only with StaggeredGridLayoutManager.

  • there is not difference if using ViewPager2 and also FragmentStatePagerAdapter

  • I try to prevent recreate of fragment(by this solution) but not solved.

UPDATE: you can clone project with this problem from here


回答1:


When using Navigation Component + ViewPager + StaggeredGridLayoutManager, wrong recyclerView.computeVerticalScrollOffset() has been returned during Fragment recreate.

In general, all layout managers bundled in the support library already know how to save and restore scroll position, but in this case, we had to take responsibility for this.

class TestFragment : Fragment(R.layout.fragment_test) {

    private val testListAdapter: TestListAdapter by lazy {
        TestListAdapter()
    }

    private var layoutManagerState: Parcelable? = null

    override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
        super.onViewCreated(view, savedInstanceState)

        postListView.apply {
            layoutManager = StaggeredGridLayoutManager(
                2, StaggeredGridLayoutManager.VERTICAL
            ).apply {
                gapStrategy = StaggeredGridLayoutManager.GAP_HANDLING_MOVE_ITEMS_BETWEEN_SPANS
            }
            setHasFixedSize(true)

            adapter = testListAdapter
        }

        testListAdapter.stateRestorationPolicy = RecyclerView.Adapter.StateRestorationPolicy.PREVENT

    }

    override fun onPause() {
        saveLayoutManagerState()
        super.onPause()
    }

    override fun onViewStateRestored(savedInstanceState: Bundle?) {
        super.onViewStateRestored(savedInstanceState)
        restoreLayoutManagerState()
    }

    private fun restoreLayoutManagerState () {
        layoutManagerState?.let { postListView.layoutManager?.onRestoreInstanceState(it) }
    }

    private fun saveLayoutManagerState () {
        layoutManagerState = postListView.layoutManager?.onSaveInstanceState()
    }
}

Source code: https://github.com/dautovicharis/MyStaggeredListSample/tree/q_65539771




回答2:


The Navigation Component behavior is normal when you navigate from one fragment to another. I mean, onDestroyView() method from the previous fragment is executed, so it means that your view is destroyed, but not the fragment. Remembering that fragment has two lifecycles one for the fragment and another one for the view, There was a video about it.

Also, there were issues registered in issue tracker in order to avoid this behavior in some cases and the GitHub issues:

  • https://issuetracker.google.com/issues/127932815
  • https://github.com/android/architecture-components-samples/issues/530

The problem is that when you have fragment that is heavy to recreate, is easier to do not destroy it and just add one fragment. So, when you go back it is not recreated. But, for this behavior is not part of navigation component.

Solutions

  • The easiest solution is to not use navigation component and work with the tradicional way, as you can see this works perfectly in you use case.

  • You can use the traditional way just for this use case, and use the navigation component for other cases.

  • You can inflate this view in an activity. So you are adding un activity

  • But if the previous tree options is not possible. You can try the following:

    • If you are using viewModel, you can use SaveState. Basically, it can save the data from your fragment, it is like a map data structure, so you can save positions from your list or recycler view. When go back to this fragment, get the position from this saveState object and use scrollToPosition method in order to add the real position.
    • Recycler view have methods for restore positions. You can see the uses cases for that, because first you need the data and then add the real position, for more details you can visit this link. This configuration for recycler view is useful also when you lose memory and you need to recreate the recycler view with asynchronous data.

Finally, if you want to understand more about how fragment works with navigation component, you can see this link



来源:https://stackoverflow.com/questions/65539771/recyclerview-with-staggeredgridlayoutmanager-in-viewpager-arranges-items-automa

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!