RecyclerRefreshLayout
RecyclerRefreshLayout copied to clipboard
How to chnage color of loading indicatore
Dear dinuscxj, i have use this library very use full to me thanks . but can you please let me know how to change color of top loading indicator
@mehulTank
- You should coustom View and implement IRefreshStatus interfaces
or
- Copy RefreshView source code to coustom
and then call RecyclerRefreshLayout.setRefreshView() method
refreshLayout.setRefreshView(new MaterialRefreshView(this, R.color.colorPrimaryDark), layoutParams);
@artshell Thanks