Example #1
0
        public static Drawable getEmojiBigDrawable(ulong code)
        {
            EmojiDrawable ed = getEmojiDrawable(code);

            if (ed == null)
            {
                return(null);
            }
            ed.SetBounds(0, 0, bigImgSize, bigImgSize);
            //ed.fullSize = true;
            return(ed);
        }
Example #2
0
        public static EmojiDrawable getEmojiDrawable(ulong code)
        {
            DrawableInfo info = rects[code];

            if (info == null)
            {
                // FileLog.e("tmessages", "No emoji drawable for code " + String.format("%016X", code));
                return(null);
            }
            EmojiDrawable ed = new EmojiDrawable(info);

            ed.SetBounds(0, 0, drawImgSize, drawImgSize);
            return(ed);
        }