Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

RecyclerView Jumps in middle of the list when paginatining

I have this page which I've setUp with MVVM and pagination using RecyclerView and Pull to refresh. Clicking on some items in this RecyclerView will navigate to another fragment.

My problem is whenever I load the page for the first time and scroll all the way down in works perfectly. Pull to refresh will work as well.

But when I navigate to the other fragment and get back, scroll all the way top, swipe to refresh: The RecyclerView will jump to the middle of the page (Right on the item where I clicked to navigate to the other fragment)

My Fragment

override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
        super.onViewCreated(view, savedInstanceState)
        val adapter = GroupAdapter<ViewHolder>().apply { add(mainSection) }
        val gridLayoutManager = GridLayoutManager(activity, adapter.spanCount)
        gridLayoutManager.spanSizeLookup = adapter.spanSizeLookup
        with(recyclerView) {
            layoutManager = gridLayoutManager
            setHasFixedSize(true)
            addOnScrollListener(PaginationScrollListener {
                viewModel.onEndOfList()
            })
        }
        recyclerView.adapter = adapter


        pullToRefresh.apply {
            setProgressBackgroundColorSchemeColor(
                ContextCompat.getColor(context, R.color.window_level_2)
            )
            setColorSchemeColors(ContextCompat.getColor(context, R.color.brand_primary))
            setOnRefreshListener { viewModel.onRefresh() }
        }
    }

My ViewModel

    fun onRefresh() {
        page = 0
        widgetItems.clear()
        _widgetListObservable.postValue(widgetItems)
        finishedLoading = false
        isFirstFetch = true
        getItems()
    }

private fun getItems() {
        isLoading = true
        dataSource.getPage(page)
            .subscribeOn(backgroundThread.getScheduler())
            .observeOn(mainThread.getScheduler())
            .flatMap {
                Flowable.fromIterable(it)
                    .toList()
                    .toFlowable()
            }
            .doAfterTerminate {
                isLoading = false
            }
            .subscribe(Consumer {
                finishedLoading = it.isEmpty()

                if (isFirstFetch && finishedLoading) {
                    _isMyPaymentsEmptyObservable.postValue(true)
                }
                widgetItems.addAll(it)
                _widgetListObservable.postValue(widgetItems)
                page++
                isFirstFetch = false
            }, {
              println(it)
            })

EDIT when I remove the onRefreshListener on the swipeToRefreshin the first fragment it works. I have no idea why this happens?

Thanks for reading.

like image 604
Maryam Mirzaie Avatar asked Dec 26 '19 10:12

Maryam Mirzaie


People also ask

How do I stop refreshing RecyclerView data scroll to top position android?

Just set your LayoutManager and adapter for the first time. Make a setDataList method in your adapter class. And set your updated list to adapter list. And then every time of calling API set that list to setDataList and call adapter.

Does RecyclerView scroll?

To help you build apps with lists, Android provides the RecyclerView . RecyclerView is designed to be very efficient, even with large lists, by reusing, or recycling, the views that have scrolled off the screen.


1 Answers

Try adding this two attribute to your parent layout of the activity.

android:focusableInTouchMode="true"
android:focusable="true"

RecyclerView might be storing the focusable to last item you have clicked or there are times when RecylerView autoscroll on data loading.

like image 142
Rashiq Avatar answered Oct 21 '22 09:10

Rashiq