I wonder how whatsapp gives support for that. I could use emojis on iPhone because it is natively supported. I'm not developing for bb neither android but I need to help a coder with this stuff.
The bb guy told me that he can add a font as a project resource (ttf), but since emojis are colored graphics, I'm not sure if i can create a ttf. I do not know anything about fonts either.
As you can see, my unknowledge is huge on this. I just need some tips that point me to the right way to research.
Thanks!
|
|
|||||||
|
|
On Android you can make a BitMap font with the tutorial i found here. Then you can embed all your Emoji into that font. For making this on the BlackBerry you can use the FontFamily class. Have fun! :-) |
|||||
|
|
From my experience most emoticons (emoji) do not use a font, but are rather bitmap graphics (e.g. emoticons in the default Android text editor). There are several downsides to using a font:
Using bitmap graphics will allow you to easily use the same emoticons across a wide range of devices, whilst using standard device fonts the text around the emoticons. You will have to parse the string that you are displaying, find the emoticons, and replace them with images. On Android for instance you would accomplish this with:
In step 3 The steps on other platforms would be different but you should be able to use the same basic method (parse string, replace emoticons with images). |
|||
|
|
Let me tell what I know, I dont know emoji, but googling it had me thinking it is a set of emoticons, primarily Japanese in origin. If that is true I would like to point out that it is common to create custom fonts using a font file (shown here). And in that font file you should be able to embed these emoticons and use them. The link I provided above, is for J2ME, but the logic and design should be similar. Hope this helps. |
|||
|
|