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

ActionBarBackgroundDrawableV21

public class ActionBarBackgroundDrawableV21 extends ActionBarBackgroundDrawable

Fields Summary
Constructors Summary
public ActionBarBackgroundDrawableV21(ActionBarContainer container)

        super(container);
    
Methods Summary
public voidgetOutline(android.graphics.Outline outline)

        if (mContainer.mIsSplit) {
            if (mContainer.mSplitBackground != null) {
                mContainer.mSplitBackground.getOutline(outline);
            }
        } else {
            // ignore the stacked background for shadow casting
            if (mContainer.mBackground != null) {
                mContainer.mBackground.getOutline(outline);
            }
        }