0

I am using recycler view in fragment. In adapter i am setting the data based on the position. Once if i reach end of the listi mean last item. User is trying to scroll down ,then i have to display one toast message like there is no new feed . How to do it ?

Thanks in advance.

Sirisha Ch
  • 21
  • 4

1 Answers1

0

Define public static boolean reachedLastItem=false In MainActivity's onCreate method write

if(reachedLastItem){
displaytoast;
reachedLastItem=false;
}

And in getView of adapter

if(index==getCount)
MainActivity.reachedLastItem=true;

Try this sample code. Please let me know in case of any help

Vikash Kumar Verma
  • 1,068
  • 2
  • 14
  • 30