Merge "Call setLayerType(LAYER_TYPE_HARDWARE) for EmojiPalettesView too."

This commit is contained in:
Ken Wakasa 2014-03-27 08:27:59 +00:00 committed by Android (Google) Code Review
commit e04a9798f6

View file

@ -632,7 +632,9 @@ public final class EmojiPalettesView extends LinearLayout implements OnTabChange
}
public void setHardwareAcceleratedDrawingEnabled(final boolean enabled) {
// TODO:
if (!enabled) return;
// TODO: Should use LAYER_TYPE_SOFTWARE when hardware acceleration is off?
setLayerType(LAYER_TYPE_HARDWARE, null);
}
private static void setupAlphabetKey(final TextView alphabetKey, final String label,