Home
last modified time | relevance | path

Searched refs:foregroundDrawable (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/startingsurface/
DSplashscreenIconDrawableFactory.java58 @NonNull Drawable foregroundDrawable, int srcIconSize, int iconSize, in makeIconDrawable() argument
65 if (foregroundDrawable instanceof Animatable) { in makeIconDrawable()
66 foreground = new AnimatableIconAnimateListener(foregroundDrawable); in makeIconDrawable()
67 } else if (foregroundDrawable instanceof AdaptiveIconDrawable) { in makeIconDrawable()
70 foreground = new ImmobileIconDrawable(foregroundDrawable, in makeIconDrawable()
76 new AdaptiveForegroundDrawable(foregroundDrawable), in makeIconDrawable()
226 AdaptiveForegroundDrawable(@NonNull Drawable foregroundDrawable) { in AdaptiveForegroundDrawable() argument
228 mForegroundDrawable = foregroundDrawable; in AdaptiveForegroundDrawable()
269 AnimatableIconAnimateListener(@NonNull Drawable foregroundDrawable) { in AnimatableIconAnimateListener() argument
270 super(foregroundDrawable); in AnimatableIconAnimateListener()
/frameworks/libs/systemui/iconloaderlib/src/com/android/launcher3/icons/
DClockDrawableWrapper.java242 boolean applyTime(Calendar time, LayerDrawable foregroundDrawable) { in applyTime() argument
252 final Drawable hour = foregroundDrawable.getDrawable(hourLayerIndex); in applyTime()
259 final Drawable minute = foregroundDrawable.getDrawable(minuteLayerIndex); in applyTime()
266 final Drawable second = foregroundDrawable.getDrawable(secondLayerIndex); in applyTime()
/frameworks/base/graphics/java/android/graphics/drawable/
DAdaptiveIconDrawable.java190 Drawable foregroundDrawable) { in AdaptiveIconDrawable() argument
195 if (foregroundDrawable != null) { in AdaptiveIconDrawable()
196 addLayer(FOREGROUND_ID, createChildDrawable(foregroundDrawable)); in AdaptiveIconDrawable()