I should convert this Android studio command to B4a:
String hexColor = String.format("#%06X", (0xFFFFFF & intColor));
where intColor is a color and hexColor is a string that I should pass to a javascript.
How can I do ?
String hexColor = String.format("#%06X", (0xFFFFFF & intColor));
where intColor is a color and hexColor is a string that I should pass to a javascript.
How can I do ?