Android Question Character ◄ does not show on button

jai

Active Member
Licensed User
Longtime User
I have four button with the following special characters- ▲ (Alt 30), ▼ (Alt 31), ► (Alt 16) and ◄ Alt 17).
The first 3 work fine but the ◄ does not. It won't show no matter how I code it, cut and paste or Alt 17.
Does anyone know why this peculiarity with this character and how can I can make it show?
 

jai

Active Member
Licensed User
Longtime User
Thanks Luca. These codes generated all four directional arrows which is good to know. Would you happen to know what would be the similar code for left-pointing triangle (◄) which is the format I am using for the other arrows.
 
Upvote 0

jai

Active Member
Licensed User
Longtime User
Does anyone know why Chr(9668) and Alt 17 (both representing the character ◄) remain invisible while other similar signs (▲ ▼ ►) show fine? How can this be made visible.

Luca, I found Chr(9664) to do the trick. It is a left pointing triangle but is about half the size of other signs. I will play with font size to adjust it temporarily until someone can help figure out how to make Chr(9668) or Alt 17 visible. Appreciate your help. Jai
 
Upvote 0

bsnqt

Active Member
Licensed User
Longtime User
I have same issue in my app, after a while (without solution), then I had to stop using it :(
 
Upvote 0

James Chamblin

Active Member
Licensed User
Longtime User
Seems that Android default font is missing some characters, including the left pointing arrow. Maybe you can set the background image with a bitmap of the arrow instead.
 
Upvote 0
Top