FileDocCategorySizeDatePackage
ColorDrawableWithDimensions.javaAPI DocAndroid 5.1 API1142Thu Mar 12 22:22:42 GMT 2015com.android.systemui.recent

ColorDrawableWithDimensions

public class ColorDrawableWithDimensions extends android.graphics.drawable.ColorDrawable

Fields Summary
private int
mWidth
private int
mHeight
Constructors Summary
public ColorDrawableWithDimensions(int color, int width, int height)

        super(color);
        mWidth = width;
        mHeight = height;
    
Methods Summary
public intgetIntrinsicHeight()

        return mHeight;
    
public intgetIntrinsicWidth()

        return mWidth;