Methods Summary |
---|
public void | draw(android.graphics.Canvas canvas)
mDrawable.draw(canvas);
|
public int | getChangingConfigurations()
return mDrawable.getChangingConfigurations();
|
public android.graphics.drawable.Drawable | getCurrent()
return mDrawable.getCurrent();
|
public int | getIntrinsicHeight()
return mDrawable.getIntrinsicHeight();
|
public int | getIntrinsicWidth()
return mDrawable.getIntrinsicWidth();
|
public int | getMinimumHeight()
return mDrawable.getMinimumHeight();
|
public int | getMinimumWidth()
return mDrawable.getMinimumWidth();
|
public int | getOpacity()
return mDrawable.getOpacity();
|
public boolean | getPadding(android.graphics.Rect padding)
return mDrawable.getPadding(padding);
|
public int[] | getState()
return mDrawable.getState();
|
public android.graphics.Region | getTransparentRegion()
return mDrawable.getTransparentRegion();
|
public android.graphics.drawable.Drawable | getWrappedDrawable()
return mDrawable;
|
public void | invalidateDrawable(android.graphics.drawable.Drawable who){@inheritDoc}
invalidateSelf();
|
public boolean | isAutoMirrored()
return DrawableCompat.isAutoMirrored(mDrawable);
|
public boolean | isStateful()
return mDrawable.isStateful();
|
public void | jumpToCurrentState()
DrawableCompat.jumpToCurrentState(mDrawable);
|
protected boolean | onLevelChange(int level)
return mDrawable.setLevel(level);
|
public void | scheduleDrawable(android.graphics.drawable.Drawable who, java.lang.Runnable what, long when){@inheritDoc}
scheduleSelf(what, when);
|
public void | setAlpha(int alpha)
mDrawable.setAlpha(alpha);
|
public void | setAutoMirrored(boolean mirrored)
DrawableCompat.setAutoMirrored(mDrawable, mirrored);
|
public void | setBounds(int left, int top, int right, int bottom)
super.setBounds(left, top, right, bottom);
mDrawable.setBounds(left, top, right, bottom);
|
public void | setChangingConfigurations(int configs)
mDrawable.setChangingConfigurations(configs);
|
public void | setColorFilter(android.graphics.ColorFilter cf)
mDrawable.setColorFilter(cf);
|
public void | setDither(boolean dither)
mDrawable.setDither(dither);
|
public void | setFilterBitmap(boolean filter)
mDrawable.setFilterBitmap(filter);
|
public void | setHotspot(float x, float y)
DrawableCompat.setHotspot(mDrawable, x, y);
|
public void | setHotspotBounds(int left, int top, int right, int bottom)
DrawableCompat.setHotspotBounds(mDrawable, left, top, right, bottom);
|
public boolean | setState(int[] stateSet)
return mDrawable.setState(stateSet);
|
public void | setTint(int tint)
DrawableCompat.setTint(mDrawable, tint);
|
public void | setTintList(android.content.res.ColorStateList tint)
DrawableCompat.setTintList(mDrawable, tint);
|
public void | setTintMode(PorterDuff.Mode tintMode)
DrawableCompat.setTintMode(mDrawable, tintMode);
|
public boolean | setVisible(boolean visible, boolean restart)
return super.setVisible(visible, restart) || mDrawable.setVisible(visible, restart);
|
public void | setWrappedDrawable(android.graphics.drawable.Drawable drawable)
if (mDrawable != null) {
mDrawable.setCallback(null);
}
mDrawable = drawable;
if (drawable != null) {
drawable.setCallback(this);
}
|
public void | unscheduleDrawable(android.graphics.drawable.Drawable who, java.lang.Runnable what){@inheritDoc}
unscheduleSelf(what);
|