When I am scrolling up SwipeRefreshLayout refreshing my app

前端 未结 3 1974
一个人的身影
一个人的身影 2021-01-05 06:29

I am created an app that downloaded some data from internet and show them in a list using recyclerView.So I added SwipeRefreshLayout so that when user is at the beginning of

3条回答
  •  忘掉有多难
    2021-01-05 06:57

     //create interface
      public interface YourFragmentInterface {
       void fragmentBecameVisible();
      }
    
     //implements YourFragmentInterface
    
            @Override
            public void fragmentBecameVisible() 
    
            // refresh detail
            }
    

提交回复
热议问题