List of usage examples for android.graphics.drawable VectorDrawable canApplyTheme
@Override public boolean canApplyTheme()
From source file:com.wnafee.vector.compat.AnimatedVectorDrawable.java
@Override public void applyTheme(Theme t) { super.applyTheme(t); final VectorDrawable vectorDrawable = mAnimatedVectorState.mVectorDrawable; if (vectorDrawable != null && vectorDrawable.canApplyTheme()) { vectorDrawable.applyTheme(t);/*from www . j a v a 2s . c o m*/ } }