Call through to super.removeallViews*().

Fixes the duplicate view bug by actually removing the views.

Bug: 3165740
Change-Id: I18f26e4cf498e6d53825959a61d585fac2c89faa
This commit is contained in:
Joe Onorato
2011-01-07 10:08:48 -08:00
parent e83b8acab1
commit 7cef289a32
@@ -646,11 +646,13 @@ public class CellLayout extends ViewGroup implements Dimmable {
@Override
public void removeAllViews() {
super.removeAllViews();
clearOccupiedCells();
}
@Override
public void removeAllViewsInLayout() {
super.removeAllViewsInLayout();
clearOccupiedCells();
}