I need to remove the progress bar from the refreshlayout or make it invisible. How to stretch and release the layout and process the refresh without progress bar?

Example:

  • The fact is that the progress bar inside the refreshlayout is the one I don’t know how to find and turn off visible - Tony
  • Add your layout xml code. - yno7
  • here is the link ( github.com/baoyongzhang/android-PullRefreshLayout ) that I use, there I did not find how to remove the progress bar. - Tony

1 answer 1

turn off

SwipeRefreshLayout.setRefreshing(false); 

turn on

 SwipeRefreshLayout.setRefreshing(true); 
  • I don't want to turn off refreshlayout. I want to remove the progress bar or make it invisible - Tony
  • @ ZhavokhErgashev LOL)) So it is used to make false invisible, and true to make visible) - JunDev