lanyueyin
Results
1
comments of
lanyueyin
可以这样处理一下 NormalDecoration normalDecoration = new NormalDecoration() { @Override public String getHeaderName(int i) { //防止加载更多的时候,控件自动添加的加载提示导致越界 if(i >= adapter.getData().size()) { i = i -1; } return ......; } };