Android Question CreateToolBar with symbols in DesignerUtils

Andie

Member
Licensed User
Longtime User
You can create a toolbar with symbols by using the library DesignerUtils (look here).

However, you can not display all symbols, because the function toChr() expects a single codepoint parameter.
Is is possible to extend this function to "unicode emojis" as e. g. 0x1F600, 0x1F3C6 etc.?
 
Last edited by a moderator:

Erel

B4X founder
Staff member
Licensed User
Longtime User
Simply paste the emoji and it will work:
B4X:
DDD.CreateToolbar(Pane1, "BottomToolbar", "šŸ‘", "home", ...

1716700129555.png
 
Upvote 0
Top