Questions tagged [endlessscroll]

Endlessscroll has been called autopagerize, unpaginate, endless pages.

Endlessscroll has been called autopagerize, unpaginate, endless pages. But essentially it is pre-fetching content from a subsequent page and adding it directly to the user’s current page.

80 questions
3
votes
0 answers

RecyclerView Endless Scrolling Up: how to keep the scrolling going?

I'm using an EndlessOnScrollListener (copyright by some genius on the net) to handle an endless Timeline in a RecyclerView. The EndlessOnScrollListener basically looks like this: public abstract class EndlessRecyclerOnScrollListener extends…
kazume
  • 1,063
  • 1
  • 11
  • 22
3
votes
2 answers

NSScrollView and manually setting the content offset while scrolling

I am trying to build an endless NSScrollView, i.e. a scroll view that can scroll infinitely in either direction. This is achieved by having a scroll view with fixed dimension which is 'recentered' once it gets too close to either edge, and keeping…
Christian Schnorr
  • 10,489
  • 8
  • 45
  • 81
2
votes
2 answers

RecyclerView inside NestedScrollview not scrolling smoothly

When I'm scrolling down, the items above the RecyclerView does not scroll unless I start touching from the layout above, and it only scrolls down when I have reached the end of the RecyclerView.
2
votes
1 answer
2
votes
1 answer

Endless Scroll RecyclerView always return to top

I have a problem with the endless scroll. Every time it loads more data, it returns to the top view. What I want is the RecyclerView to stay in the last position when it loads new data. I am trying to implement this code…
2
votes
0 answers

Android endless scroll with Koush ion

I have problem with endless scroll ListView and Koush-ion library. The problem is endless scroll does not work without first ion request. My code: @Override protected void onCreate(Bundle savedInstanceState) { …
zxc123qwe098qqq
  • 155
  • 1
  • 4
  • 12
2
votes
2 answers

Endless scrolling listview not working

I am developing one application. In my app I am using listview to display data from json. All the data display perfectly. But what I want is, to display first 10 objects and then loading items should show and then remaining 10 will display. My json…
parajs dfsb
  • 125
  • 1
  • 4
  • 13
2
votes
1 answer

Cannot load data with endless scroll

I'm new to Android and got stuck on one moment. I have working practice in a company, but I have no people to give an advice. My application is something like RSS feed. I have to load data from API which returns me JSON object. The address of API is…
Max Zavernutiy
  • 1,447
  • 1
  • 16
  • 27
2
votes
1 answer

Android: Using EndlessScrollListener in listview just keeps on loading data when scrolled up

This is my EndLessScrollListener.java. Does anyone have faced this issue wherein you scroll up and it keeps on scrolling right to the top of the list.I am building a app similar to hangouts for chat messages wherein the latest message is right at…
user3773337
  • 1,476
  • 3
  • 15
  • 28
1
vote
1 answer

How to do pagination on firebase db on android?

I have a feed filled by comments and I simply it to load the newest ones first and when the user request more comments they will get loaded (from the newest to the oldest one). This is how my db looks like: So let's suppose I want to return only 1…
1
vote
1 answer

Endless auto scroll view pager with page indicator

I have to build view pager with endless auto scroll. Also I need to show a page indicator below view pager which should respond as per the scroll events. I have applied following logic for endless auto scroll currently: public void…
1
vote
1 answer

How to insert infinite scroll to Laravel Project

Am very new to Jquery and Ajax being used in laravel and been trying to implement infinite scroll to my project and i have no idea where to start The Controller: $books= DB::table('books')->where('status', 'post')->orderBy('created_at',…
1
vote
1 answer

Recyclerview addOnScrollListener issue

Here's my function that detect end off RecyclerView that will be use in pagination later. private fun setOnScrollListener(categoryRecyclerView: RecyclerView, categoryPresenter: EntertainmentPresenter){ …
1
vote
0 answers

LiveData RecyclerView and custom pagination

Im trying to show and endless scroll screen within my app. Im not using new Paging library, so every time I detect bottom scroll reached I request a new list to data do show. I do use LiveData to post that data to the UI and here its when my doubt…
1
vote
2 answers

In Android Endless Scrolling is not working in fragment

I am trying to implement this source code for making endless scroll recycle view. But not working in this case. I am trying both recyclerView.addOnScrollListener() and recyclerView.setOnScrollListener() but not working @Override public View…
Jagjeet Singh
  • 204
  • 1
  • 2
  • 12