am 2d3e1210: Fix memory leak in EmojiPaletteView

* commit '2d3e121014a97b7de90f287f1ef82fa98f37007c':
  Fix memory leak in EmojiPaletteView
main
Satoshi Kataoka 2013-10-08 03:12:41 -07:00 committed by Android Git Automerger
commit 67aa1a93f8
1 changed files with 6 additions and 3 deletions

View File

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