I am working on chat. I want to set all emoji icon on text view with text. I have tried by many way but either I am able to set text or a single emojiicon on text. How to set multiple emoji icon with text on text? I have search lots of on google but I did not find anything with working mode.
String text = "hello";
for (int i = 0; i < emojilist.length-1; i++) {
Spanned cs = Html.fromHtml("<img src ='"+ emojilist[i] +"'/>",
imageGetter, null);
textviewobject.setText(cs);
}