From 7ddb3965d949e53def927fc926f77850bf85d29e Mon Sep 17 00:00:00 2001 From: Nader Jawad Date: Thu, 28 Mar 2019 17:28:00 -0700 Subject: Relaxed nullability requirements for setTintMode APIs for both PorterDuff.Mode and BlendMode The existing documentation had annotated the PorterDuff.Mode parameter of Drawable#setTintMode to be @NonNull. However, some applications were still passing in null as a parameter. This was fine in previous releases as the default implementation of Drawable#setTintMode did not read this field. With the recent changes to introduce the BlendMode API, the nullability assumption broke for various apps that passed in null, causing NullPointerExceptions to be thrown. Instead, update the documentation to be nullable and internally convert the parameter to the corresponding default for either PorterDuff.Mode or BlendMode. Test: Added CTS tests to verify null behavior for each setTintMode overload Bug: 129446670 Change-Id: I42a4b03d190e5a64df518b5c768b2c22853abf12 --- .../java/android/graphics/drawable/Drawable.java | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) (limited to 'graphics/java/android') diff --git a/graphics/java/android/graphics/drawable/Drawable.java b/graphics/java/android/graphics/drawable/Drawable.java index e4142a933f0f..adc04fb03e2a 100644 --- a/graphics/java/android/graphics/drawable/Drawable.java +++ b/graphics/java/android/graphics/drawable/Drawable.java @@ -688,20 +688,20 @@ public abstract class Drawable { * {@link #setColorFilter(int, PorterDuff.Mode)} overrides tint. *

* - * @param tintMode A Porter-Duff blending mode + * @param tintMode A Porter-Duff blending mode to apply to the drawable, a value of null sets + * the default Porter-Diff blending mode value + * of {@link PorterDuff.Mode#SRC_IN} * @see #setTint(int) * @see #setTintList(ColorStateList) * * @deprecated use {@link #setTintMode(BlendMode)} instead */ @Deprecated - public void setTintMode(@NonNull PorterDuff.Mode tintMode) { + public void setTintMode(@Nullable PorterDuff.Mode tintMode) { if (!mSetTintModeInvoked) { mSetTintModeInvoked = true; - BlendMode mode = BlendMode.fromValue(tintMode.nativeInt); - if (mode != null) { - setTintMode(mode); - } + BlendMode mode = tintMode != null ? BlendMode.fromValue(tintMode.nativeInt) : null; + setTintMode(mode != null ? mode : Drawable.DEFAULT_BLEND_MODE); mSetTintModeInvoked = false; } } @@ -716,17 +716,16 @@ public abstract class Drawable { * {@link #setColorFilter(ColorFilter)} *

* - * @param blendMode + * @param blendMode BlendMode to apply to the drawable, a value of null sets the default + * blend mode value of {@link BlendMode#SRC_IN} * @see #setTint(int) * @see #setTintList(ColorStateList) */ - public void setTintMode(@NonNull BlendMode blendMode) { + public void setTintMode(@Nullable BlendMode blendMode) { if (!mSetBlendModeInvoked) { mSetBlendModeInvoked = true; PorterDuff.Mode mode = BlendMode.blendModeToPorterDuffMode(blendMode); - if (mode != null) { - setTintMode(mode); - } + setTintMode(mode != null ? mode : Drawable.DEFAULT_TINT_MODE); mSetBlendModeInvoked = false; } } -- cgit v1.2.3-59-g8ed1b