Skip to content

Instantly share code, notes, and snippets.

@consp1racy
Created April 19, 2015 03:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save consp1racy/d315b125a305546f2330 to your computer and use it in GitHub Desktop.
Save consp1racy/d315b125a305546f2330 to your computer and use it in GitHub Desktop.
How to get around wrapped drawables
package net.xpece.android.graphics.drawable;
import android.graphics.drawable.Drawable;
import android.util.Log;
import java.lang.reflect.Field;
/**
* Created by Eugen on 8. 3. 2015.
*/
public class XpeceDrawableWrapper {
private static final String TAG = XpeceDrawableWrapper.class.getSimpleName();
private static final Class<?> CLASS_DRAWABLE_WRAPPER;
private static final Class<?> CLASS_DRAWABLE_WRAPPER_COMPAT;
private static final Field FIELD_DRAWABLE;
private static final Field FIELD_DRAWABLE_COMPAT;
static {
Class<?> drawableWrapper = null, drawableWrapperSupport = null;
Field drawable = null, drawableSupport = null;
try {
drawableWrapper = Class.forName("com.android.settings.drawable.DrawableWrapper");
drawable = drawableWrapper.getDeclaredField("mDrawable");
drawable.setAccessible(true);
} catch (Exception e) {
Log.d(TAG, e.getLocalizedMessage() + " not available.");
}
try {
drawableWrapperSupport = Class.forName("android.support.v7.internal.widget.DrawableWrapper");
drawableSupport = drawableWrapperSupport.getDeclaredField("mDrawable");
drawableSupport.setAccessible(true);
} catch (Exception e) {
Log.d(TAG, e.getLocalizedMessage() + " not available.");
}
CLASS_DRAWABLE_WRAPPER = drawableWrapper;
CLASS_DRAWABLE_WRAPPER_COMPAT = drawableWrapperSupport;
FIELD_DRAWABLE = drawable;
FIELD_DRAWABLE_COMPAT = drawableSupport;
}
private XpeceDrawableWrapper() {}
public static Drawable getDrawable(Drawable wrapper) {
try {
if (isWrapperSupport(wrapper)) {
return (Drawable) FIELD_DRAWABLE_COMPAT.get(wrapper);
} else if (isWrapperNative(wrapper)) {
return (Drawable) FIELD_DRAWABLE.get(wrapper);
} else {
Log.d(TAG, wrapper + "is not an instance of DrawableWrapper.");
return wrapper;
}
} catch (IllegalAccessException e) {
e.printStackTrace();
}
return wrapper;
}
public static boolean isWrapper(Drawable drawable) {
return isWrapperNative(drawable) || isWrapperSupport(drawable);
}
private static boolean isWrapperSupport(Drawable drawable) {
return (CLASS_DRAWABLE_WRAPPER_COMPAT != null && CLASS_DRAWABLE_WRAPPER_COMPAT.isInstance(drawable));
}
private static boolean isWrapperNative(Drawable drawable) {
return (CLASS_DRAWABLE_WRAPPER != null && CLASS_DRAWABLE_WRAPPER.isInstance(drawable));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment