List of usage examples for android.graphics.drawable VectorDrawable applyTheme
@Override public void applyTheme(Theme t)
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); }// w w w . j a v a 2s. c om }