public android.graphics.drawable.Drawable | getDrawable(int id)We intercept this call so that we tint the result (if applicable). This is needed for things
like {@link DrawableContainer}s which retrieve their children via this method.
Drawable d = super.getDrawable(id);
if (d != null) {
mTintManager.tintDrawable(id, d);
}
return d;
|