Swipe Refresh Layout retry progress bar after (x) minutes

198 Views Asked by At

I read documentation of SwipeRefreshLayoutbut couldn't find any method for RetryPolicy. I want SwipeRefreshLayout to show retry in progressbar if data isn't fetched in 5 seconds.

Any guideliness

1

There are 1 best solutions below

1
On

As @Wizard said, you can do it something like this.

    new Handler().postDelayed(new Runnable() {
        @Override
        public void run() {
            if(data_isnt_fetched){

                 //Fetch data again

              }
        }
    }, 5000); //5sec