android-cjj / Android-MaterialRefreshLayout

This is a drop-down control, it is more beautiful and powerful than SwipeRefreshLayout
2.11k stars 483 forks source link

一个Activity 多个Fragment 在fragment中添加这个刷新控件,左右滑动 上面的圈会反复叠加 阴影加重?bug #42

Open NBXXF opened 8 years ago

chaiyanliang commented 8 years ago

real bug

getpro commented 8 years ago

解决方法,在onAttachedToWindow判断下


if(mMaterialHeaderView==null){
                mMaterialHeaderView  = new MaterialHeaderView(context);
            }

在setHeaderView中remove下


 private void setHeaderView(final View headerView) {
        removeView(headerView);
        addView(headerView);
    }

问题解决(^o^)/