Fix memory leak with TouchTargets not being recycled.

This commit is contained in:
Patrick Dubroy
2010-10-19 17:36:18 -07:00
parent 62f2ada64f
commit fb0547d2c0

View File

@@ -4627,7 +4627,10 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
next = sRecycleBin;
sRecycleBin = this;
sRecycledCount += 1;
} else {
next = null;
}
child = null;
}
}
}