FileDocCategorySizeDatePackage
WindowInsetsCompatApi21.javaAPI DocAndroid 5.1 API3078Thu Mar 12 22:22:56 GMT 2015android.support.v4.view

WindowInsetsCompatApi21

public class WindowInsetsCompatApi21 extends WindowInsetsCompat

Fields Summary
private final android.view.WindowInsets
mSource
Constructors Summary
WindowInsetsCompatApi21(android.view.WindowInsets source)

        mSource = source;
    
Methods Summary
public WindowInsetsCompatconsumeStableInsets()

        return new WindowInsetsCompatApi21(mSource.consumeStableInsets());
    
public WindowInsetsCompatconsumeSystemWindowInsets()

        return new WindowInsetsCompatApi21(mSource.consumeSystemWindowInsets());
    
public intgetStableInsetBottom()

        return mSource.getStableInsetBottom();
    
public intgetStableInsetLeft()

        return mSource.getStableInsetLeft();
    
public intgetStableInsetRight()

        return mSource.getStableInsetRight();
    
public intgetStableInsetTop()

        return mSource.getStableInsetTop();
    
public intgetSystemWindowInsetBottom()

        return mSource.getSystemWindowInsetBottom();
    
public intgetSystemWindowInsetLeft()

        return mSource.getSystemWindowInsetLeft();
    
public intgetSystemWindowInsetRight()

        return mSource.getSystemWindowInsetRight();
    
public intgetSystemWindowInsetTop()

        return mSource.getSystemWindowInsetTop();
    
public booleanhasInsets()

        return mSource.hasInsets();
    
public booleanhasStableInsets()

        return mSource.hasStableInsets();
    
public booleanhasSystemWindowInsets()

        return mSource.hasSystemWindowInsets();
    
public booleanisConsumed()

        return mSource.isConsumed();
    
public booleanisRound()

        return mSource.isRound();
    
public WindowInsetsCompatreplaceSystemWindowInsets(int left, int top, int right, int bottom)

        return new WindowInsetsCompatApi21(mSource.replaceSystemWindowInsets(left, top, right, bottom));
    
public WindowInsetsCompatreplaceSystemWindowInsets(android.graphics.Rect systemWindowInsets)

        return new WindowInsetsCompatApi21(mSource.replaceSystemWindowInsets(systemWindowInsets));
    
android.view.WindowInsetsunwrap()

        return mSource;