FileDocCategorySizeDatePackage
FitWindowsFrameLayout.javaAPI DocAndroid 5.1 API1500Thu Mar 12 22:22:56 GMT 2015android.support.v7.internal.widget

FitWindowsFrameLayout

public class FitWindowsFrameLayout extends android.widget.FrameLayout implements FitWindowsViewGroup
hide

Fields Summary
private OnFitSystemWindowsListener
mListener
Constructors Summary
public FitWindowsFrameLayout(android.content.Context context)

        super(context);
    
public FitWindowsFrameLayout(android.content.Context context, android.util.AttributeSet attrs)

        super(context, attrs);
    
Methods Summary
protected booleanfitSystemWindows(android.graphics.Rect insets)

        if (mListener != null) {
            mListener.onFitSystemWindows(insets);
        }
        return super.fitSystemWindows(insets);
    
public voidsetOnFitSystemWindowsListener(OnFitSystemWindowsListener listener)

        mListener = listener;