Fix access modifiers on ImageView overrides

Change-Id: I64cc10c877ac4adc4b79abcd7c7617480bd82906
This commit is contained in:
Adam Powell
2011-11-10 14:11:51 -08:00
parent 67121fd7b2
commit 6a939ae6fd

View File

@@ -1045,7 +1045,7 @@ public class ImageView extends View {
}
@Override
public void onAttachedToWindow() {
protected void onAttachedToWindow() {
super.onAttachedToWindow();
if (mDrawable != null) {
mDrawable.setVisible(getVisibility() == VISIBLE, false);
@@ -1053,7 +1053,7 @@ public class ImageView extends View {
}
@Override
public void onDetachedFromWindow() {
protected void onDetachedFromWindow() {
super.onDetachedFromWindow();
if (mDrawable != null) {
mDrawable.setVisible(false, false);