FileDocCategorySizeDatePackage
KeyguardPreviewContainer.javaAPI DocAndroid 5.1 API2164Thu Mar 12 22:22:42 GMT 2015com.android.systemui.statusbar.phone

KeyguardPreviewContainer

public class KeyguardPreviewContainer extends android.widget.FrameLayout
A view group which contains the preview of phone/camera and draws a black bar at the bottom as the fake navigation bar.

Fields Summary
private android.graphics.drawable.Drawable
mBlackBarDrawable
Constructors Summary
public KeyguardPreviewContainer(android.content.Context context, android.util.AttributeSet attrs)


         
        super(context, attrs);
        setBackground(mBlackBarDrawable);
    
Methods Summary
public android.view.WindowInsetsonApplyWindowInsets(android.view.WindowInsets insets)

        setPadding(0, 0, 0, insets.getStableInsetBottom());
        return super.onApplyWindowInsets(insets);