am 2d3e1210: Fix memory leak in EmojiPaletteView

* commit '2d3e121014a97b7de90f287f1ef82fa98f37007c':
  Fix memory leak in EmojiPaletteView
This commit is contained in:
Satoshi Kataoka 2013-10-08 03:12:41 -07:00 committed by Android Git Automerger
commit 67aa1a93f8

View file

@ -694,13 +694,16 @@ public final class EmojiPalettesView extends LinearLayout implements OnTabChange
@Override @Override
public void destroyItem(final ViewGroup container, final int position, public void destroyItem(final ViewGroup container, final int position,
final Object object) { final Object object) {
ScrollKeyboardView keyboardView = mActiveKeyboardViews.get(position); final ScrollKeyboardView keyboardView = mActiveKeyboardViews.get(position);
if (keyboardView != null) { if (keyboardView != null) {
keyboardView.deallocateMemory(); keyboardView.deallocateMemory();
mActiveKeyboardViews.remove(position); mActiveKeyboardViews.remove(position);
} }
container.removeView(keyboardView); if (object instanceof View) {
keyboardView = null; container.removeView((View)object);
} else {
Log.w(TAG, "Warning!!! Emoji palette may be leaking. " + object);
}
} }
} }