I need a special character in my app, like a check mark.
In the old DOS days there was one with ALT + 251 (square root).
In ANSI I could find something in the ZapfDingBats ...
or in UNICODE: U+2713 or U+2714 are nice hooks.
By now, I do create a bitmap with the right color and paint a line inside to show "This record is done OK", but they want nicer symbols ... :sign0085:
Does Android use the hole UNICODE characters ?
How can I define the U+2713 in the IDE, by now I get only small boxes ?
I don't want to create 10 bitmaps with all colors an this sign and they have to be small ... (10x10dip).
I have the "Courier NEW" Font in the IDE, so the U+2713 (with chr() or paste) will not work (only a rectangle is shown). But this font do have the square root (found in the link) and this works.
The U+2713 character is not recognized with default typeface on both my devices (Nexus One and Asus TF700)
But I use √ the square root character U+221A.
Chr(8730) is the square root character.
I found Erels' checkmark character, but we must use
Chr(10003) instead of Chr(2713).
The checkmark character looks nicer than the square root character.
Chr(10003) looks nicer, but needs more space as √ so I use √ in the normal Listbox with normal Text and Chr(10003) in my bitmap button.
After I changed the size to 100dip it looks realy nice :sign0060: