Hi I'd like to do the following:
??? unicode = U+1F60A
String emoji = getEmojiByUnicode(unicode)
String text = "So happy "
textview.setText(text + emoji);
to get this in my textview:
So happy π
How can I implement getEmojiByUnicode(unicode)
?
What type should the unicode
variable be? (String, char, int?)
Please note that I do NOT want to use Drawables!