diff options
| author | Alan Viverette <alanv@google.com> | 2014-06-18 18:05:15 -0700 |
|---|---|---|
| committer | Alan Viverette <alanv@google.com> | 2014-06-18 18:05:15 -0700 |
| commit | 8de1494557cf1d00c1c3fce439138a28de7fbd61 (patch) | |
| tree | 32da38b42bddb9e47060e1fefed6430e528ffee3 /core/java/android/widget/TextView.java | |
| parent | e48df005750549b5531a916368f168189e370acc (diff) | |
Fix switch & slider anim, make View drawable hotspot API public
BUG: 15287810
Change-Id: Ic7a9549dc1ba8afd07e9a196371ed349a54aaf2f
Diffstat (limited to 'core/java/android/widget/TextView.java')
| -rw-r--r-- | core/java/android/widget/TextView.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/core/java/android/widget/TextView.java b/core/java/android/widget/TextView.java index 0f51e8bb52ed..d470586d6e99 100644 --- a/core/java/android/widget/TextView.java +++ b/core/java/android/widget/TextView.java @@ -3503,10 +3503,9 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener } } - /** @hide */ @Override - protected void setDrawableHotspot(float x, float y) { - super.setDrawableHotspot(x, y); + public void drawableHotspotChanged(float x, float y) { + super.drawableHotspotChanged(x, y); final Drawables dr = mDrawables; if (dr != null) { |
