Remove gray placeholder squares while loading emoji

pull/1/head
Veeti Paananen 10 years ago committed by Jake McGinty
parent 3597915d17
commit 9e74b5c892

@ -365,15 +365,12 @@ public class Emoji {
private final int index;
private final int page;
private final int emojiSize;
private static final Paint placeholderPaint;
private static final Paint paint;
private Bitmap bmp;
static {
paint = new Paint();
paint.setFilterBitmap(true);
placeholderPaint = new Paint();
placeholderPaint.setColor(0x55000000);
}
public EmojiDrawable(DrawInfo info, int emojiSize) {
@ -386,7 +383,6 @@ public class Emoji {
public void draw(Canvas canvas) {
if (bitmaps[page] == null) {
Log.w("Emoji", "bitmap for this page was null");
canvas.drawRect(getBounds(), placeholderPaint);
return;
}
if (bmp == null) {

Loading…
Cancel
Save