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.

84 questions
3
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…
3
votes
4 answers

Implementing Endless RecyclerView

I want to implement an endless RecyclerView but so far all the implementations and tutorials I have come across describe loading data off a server then loading it or dynamically adding elements using a loop. In my case, I already have a large…
Alex Kombo
  • 3,256
  • 8
  • 34
  • 67
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,333
  • 2
  • 16
  • 30
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,768
  • 8
  • 48
  • 83
2
votes
1 answer
2
votes
0 answers

pagination doesn't resume after internet goes off and back on

i am working on pagination with recyclerview, it works very well, but the moment i switch off my internet connection, it stops normally, but when i put it back on and scroll to the bottom, the pagination doesn't resume unless i restart the…
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
  • 165
  • 2
  • 4
  • 13
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
  • 145
  • 2
  • 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,771
  • 1
  • 18
  • 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
  • 2,086
  • 4
  • 20
  • 29
1
vote
2 answers

RecyclerView infinite scroll not working inside ViewPager2

I have a horizontal ViewPager2. On the second slide of the view pager, I have a RecyclerView that has infinite scrolling implemented. I used EndlessRecyclerViewScrollListener to implement infinite scroll. However, when scrolling down this…
1
vote
0 answers

Images are not showing after implementing Pagination in my RecyclerView

I have implemented Pagination in my RecyclerView but after implementing pagination the images are not showing up Ok I have implemented this pagination answer Ok because the answer above is for LinearLayoutManager and I'm using…
1
vote
1 answer

Images are not showing up (loading) in recyclerview after implementing Endless scroll (Pagination)

I have implemented an EndlessScroll for RecyclerView (Only Images in it) or we can say Pagination but after implementing it I don't know why the images are not loading up from Firebase So I tried to include a placeholder image from my adapter class…
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…