emojicon
emojicon copied to clipboard
Using non SBUnicode Emoji's
I'm using EmojiconTextView , Emoji's get displayed when using SBunicode like \ue32d . But not able to display any other Emoji's .
<string name="emoji">But why are you not displaying \u1f523</string>
e.g
- codepoints like this U+1F625
- "\uD83C\uDF56"
- UTF-32 decimal like this 127830
- UTF-32 HEX like this 0x0001F356
- 0xD83C 0xDF56
- /u1f356
I could see that in the example project the inner methods are directly called to give different types of inputs . Is integrating the library by source the only way to use non SBunicode Emoji's in a Text view ?