如何添加笑脸/ Emojis在EDITTEXT?笑脸、Emojis、EDITTEXT

2023-09-13 01:28:02 作者:今夜滿天星

如何添加笑脸/ Emojis在EDITTEXT?

How to Add Smiley/Emojis in Edittext?

所有源$ C ​​$ c是在互联网上提供,如果是的话请给我链接。

Any Source code is Available on Internet, if yes Please Give me Link.

在此先感谢。

推荐答案

我使用跌破$ C $下添加笑脸/ Emojis中的EditText。

I am using below code for add Smiley/Emojis in edittext.

ImageGetter imageGetter = new ImageGetter() {
    public Drawable getDrawable(String source) {
        Drawable d = getResources().getDrawable(R.drawable.happy);
        d.setBounds(0, 0, d.getIntrinsicWidth(), d.getIntrinsicHeight());
        return d;
    }
};

cs = Html.fromHtml("<img src='" + getResources().getDrawable(R.drawable.happy) + "'/>", imageGetter, null);
edttxtemoji.setText(cs);