summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/com/android/bitmap/drawable/ExtendedBitmapDrawable.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/com/android/bitmap/drawable/ExtendedBitmapDrawable.java b/src/com/android/bitmap/drawable/ExtendedBitmapDrawable.java
index b7a5c77..5ccdecd 100644
--- a/src/com/android/bitmap/drawable/ExtendedBitmapDrawable.java
+++ b/src/com/android/bitmap/drawable/ExtendedBitmapDrawable.java
@@ -198,9 +198,11 @@ public class ExtendedBitmapDrawable extends BasicBitmapDrawable implements
*
* The reason for this is that we need the placeholder and progress bar to be drawn over our
* content. Those two drawables fade out, giving the impression that our content is fading in.
+ *
+ * Only override this method for custom drawings on top of all the drawable layers.
*/
@Override
- public final void draw(final Canvas canvas) {
+ public void draw(final Canvas canvas) {
final Rect bounds = getBounds();
if (bounds.isEmpty()) {
return;