HSwipeRefreshLayout

Introduction: 基于 SwipeRefreshLayout 修改横向滑动刷新
More: Author   ReportBugs   
Tags:

如果对您有用 请顺手帮忙点个 star 感谢

//用法与原生一致
mSwipeRefresh = mBinding.shrlLayout;

if (mBinding.getRoot().getContext() != null) {
  final TypedArray typedArray = getContext().obtainStyledAttributes(
          new int[]{R.attr.color_mgo_common_refresh, R.attr.color_mgo_common_bg});
   mSwipeRefresh.setColorSchemeColors(typedArray.getColor(0, Color.WHITE));
   mSwipeRefresh.setProgressBackgroundColorSchemeColor(typedArray.getColor(1, Color.WHITE));
}

mSwipeRefresh.setOnRefreshListener(this::onRefresh);
mSwipeRefresh.setRefreshing(false);
mSwipeRefresh.setRefreshing(true);
Apps
About Me
GitHub: Trinea
Facebook: Dev Tools