admin
2021-05-22 3595485efbfeb0db8c0e719e34aac022af284754
1
2
3
4
5
6
7
8
9
10
11
package com.wpc.library.widget.TitleBar;
 
import android.view.View;
 
public interface ContentHandler {
    boolean checkCanDoRefresh(final MaterialHeaderLayout frame, final View content, final View header);
 
    void onChange(float ratio, float offsetY);
 
    void onOffsetCalculated(int totalOffset);
}