/frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/ |
AnimatedVectorDrawableAttr.java | 18 import android.graphics.drawable.AnimatedVectorDrawable; 29 AnimatedVectorDrawable avd = (AnimatedVectorDrawable) avdIv.getDrawable();
|
AnimatedVectorDrawableTest.java | 19 import android.graphics.drawable.AnimatedVectorDrawable; 75 AnimatedVectorDrawable d = (AnimatedVectorDrawable) button.getBackground(); 102 AnimatedVectorDrawable d = (AnimatedVectorDrawable) v.getBackground();
|
AnimatedVectorDrawableDupPerf.java | 18 import android.graphics.drawable.AnimatedVectorDrawable; 64 public static AnimatedVectorDrawable create(Resources resources, int rid) { 77 final AnimatedVectorDrawable drawable = new AnimatedVectorDrawable(); 98 AnimatedVectorDrawable []d = new AnimatedVectorDrawable[icon.length];
|
AnimatedStateVectorDrawableTest.java | 18 import android.graphics.drawable.AnimatedVectorDrawable;
|
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
AnimatedVectorDrawableTest.java | 36 import android.graphics.drawable.AnimatedVectorDrawable; 82 // Setup AnimatedVectorDrawable from xml file 97 AnimatedVectorDrawable drawable = new AnimatedVectorDrawable(); 114 AnimatedVectorDrawable avd = new AnimatedVectorDrawable(); 138 AnimatedVectorDrawable AnimatedVectorDrawable = new AnimatedVectorDrawable(); 139 ConstantState constantState = AnimatedVectorDrawable.getConstantState() [all...] |
AnimatedVectorDrawableParameterizedTest.java | 31 import android.graphics.drawable.AnimatedVectorDrawable; 135 AnimatedVectorDrawable avd = 136 (AnimatedVectorDrawable) imageView[0].getDrawable(); 182 AnimatedVectorDrawable avd = (AnimatedVectorDrawable) imageView[0].getDrawable(); 208 final AnimatedVectorDrawable d1 = 209 (AnimatedVectorDrawable) mResources.getDrawable(resId); 236 final AnimatedVectorDrawable d1 = 237 (AnimatedVectorDrawable) mResources.getDrawable(resId); 300 AnimatedVectorDrawable avd = (AnimatedVectorDrawable) imageView[0].getDrawable() [all...] |
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/ |
AnimatedVectorDrawable_VectorDrawableAnimatorRT_Delegate.java | 22 import android.graphics.drawable.AnimatedVectorDrawable.VectorDrawableAnimatorRT;
|
AnimatedVectorDrawable_Delegate.java | 31 import android.graphics.drawable.AnimatedVectorDrawable.VectorDrawableAnimatorRT; 42 * AnimatedVectorDrawable} 44 * Through the layoutlib_create tool, the original methods of AnimatedVectorDrawable have been 102 Bridge.getLog().fidelityWarning(LayoutLog.TAG_UNSUPPORTED, "AnimatedVectorDrawable path " +
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
ExpandableIndicator.java | 18 import android.graphics.drawable.AnimatedVectorDrawable; 44 final AnimatedVectorDrawable avd = (AnimatedVectorDrawable) getContext()
|
LockIcon.java | 21 import android.graphics.drawable.AnimatedVectorDrawable; 164 final AnimatedVectorDrawable animation = icon instanceof AnimatedVectorDrawable 165 ? (AnimatedVectorDrawable) icon
|
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/preprovisioning/anim/ |
BenefitsAnimation.java | 26 import android.graphics.drawable.AnimatedVectorDrawable; 60 private final AnimatedVectorDrawable mTopAnimation; 61 private final AnimatedVectorDrawable mDotsAnimation; 99 * <p>Looping {@link AnimatedVectorDrawable} and {@link AnimatorSet} currently not possible in 160 /** Extracts an {@link AnimatedVectorDrawable} from a containing {@link ImageView}. */ 161 private AnimatedVectorDrawable extractAnimationFromImageView(int id) { 163 return (AnimatedVectorDrawable) imageView.getDrawable();
|
/frameworks/support/graphics/drawable/animated/src/android/support/graphics/drawable/ |
AnimatedVectorDrawableCompat.java | 32 import android.graphics.drawable.AnimatedVectorDrawable; 56 * AnimatedVectorDrawable}. 62 * {@link AnimatedVectorDrawable}. 688 return ((AnimatedVectorDrawable) mDelegateDrawable).isRunning(); 697 ((AnimatedVectorDrawable) mDelegateDrawable).start(); 713 ((AnimatedVectorDrawable) mDelegateDrawable).stop(); 741 private static boolean unregisterPlatformCallback(AnimatedVectorDrawable dr, 751 registerPlatformCallback((AnimatedVectorDrawable) mDelegateDrawable, callback); 804 private static void registerPlatformCallback(@NonNull AnimatedVectorDrawable avd, 824 unregisterPlatformCallback((AnimatedVectorDrawable) mDelegateDrawable, callback) [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
PageIndicator.java | 6 import android.graphics.drawable.AnimatedVectorDrawable; 152 final AnimatedVectorDrawable avd = (AnimatedVectorDrawable) getContext().getDrawable(res);
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
AnimatedVectorDrawable.java | 74 * Starting from API 25, AnimatedVectorDrawable runs on RenderThread (as opposed to on UI thread for 75 * earlier APIs). This means animations in AnimatedVectorDrawable can remain smooth even when there 78 * possible to precisely coordinate a RenderThread-enabled AnimatedVectorDrawable with UI thread 81 * called the frame after the AnimatedVectorDrawable finishes on the RenderThread. 84 * AnimatedVectorDrawable can be defined in either <a href="#ThreeXML">three separate XML files</a>, 88 * <h3>Define an AnimatedVectorDrawable in three separate XML files</h3> 167 * <a href="AVDExample">AnimatedVectorDrawable XML example</a>. 188 * <li><h4>XML for AnimatedVectorDrawable</h4> 190 * An AnimatedVectorDrawable element has a VectorDrawable attribute, and one or more target 194 * The following code sample defines an AnimatedVectorDrawable. Note that the names refer to th [all...] |
AnimatedStateListDrawable.java | 214 } else if (d instanceof AnimatedVectorDrawable) { 217 transition = new AnimatedVectorDrawableTransition((AnimatedVectorDrawable) d, 309 private final AnimatedVectorDrawable mAvd; 319 public AnimatedVectorDrawableTransition(AnimatedVectorDrawable avd, 349 + " or the AnimatedVectorDrawable can't reverse");
|
DrawableInflater.java | 171 return new AnimatedVectorDrawable();
|
/packages/apps/Settings/src/com/android/settings/fingerprint/ |
FingerprintEnrollEnrolling.java | 29 import android.graphics.drawable.AnimatedVectorDrawable; 86 private AnimatedVectorDrawable mIconAnimationDrawable; 102 mIconAnimationDrawable = (AnimatedVectorDrawable)
|
/frameworks/base/core/java/android/view/ |
RenderNode.java | 25 import android.graphics.drawable.AnimatedVectorDrawable; 810 AnimatedVectorDrawable.VectorDrawableAnimatorRT animatorSet) { [all...] |
ThreadedRenderer.java | 27 import android.graphics.drawable.AnimatedVectorDrawable; 863 AnimatedVectorDrawable.VectorDrawableAnimatorRT animator) { [all...] |
/frameworks/base/core/java/com/android/internal/widget/ |
FloatingToolbar.java | 30 import android.graphics.drawable.AnimatedVectorDrawable; 358 private final AnimatedVectorDrawable mToArrow; 359 private final AnimatedVectorDrawable mToOverflow; 470 mToArrow = (AnimatedVectorDrawable) mContext.getResources() 473 mToOverflow = (AnimatedVectorDrawable) mContext.getResources() [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
ExpandableNotificationRow.java | 29 import android.graphics.drawable.AnimatedVectorDrawable; 315 } else if (drawable instanceof AnimatedVectorDrawable) { 316 AnimatedVectorDrawable animationDrawable = (AnimatedVectorDrawable) drawable; [all...] |
SignalClusterView.java | 28 import android.graphics.drawable.AnimatedVectorDrawable;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/ |
VolumeDialogImpl.java | 36 import android.graphics.drawable.AnimatedVectorDrawable; 603 if (d instanceof AnimatedVectorDrawable) { 605 final AnimatedVectorDrawable avd = (AnimatedVectorDrawable) d.getConstantState() [all...] |
/frameworks/base/ |
preloaded-classes | [all...] |
compiled-classes-phone | [all...] |