安卓EmojiTextView 和EmojiEditText

https://github.com/rockerhieu/emojicon

用法和TextView一样。

发送的时候用UTF-8

           String enCodedStatusCode = "";

            try {
                enCodedStatusCode = URLEncoder.encode(statusText,
                        HTTP.UTF_8);
            } catch (UnsupportedEncodingException e) {
                e.printStackTrace();
            }

            params.put("content", enCodedStatusCode);
            params.put("image", base64Image2);

            return params;
        }

https://github.com/rockerhieu/emojicon/issues/43

原文地址:https://www.cnblogs.com/niray/p/4251306.html