I have a problem with the BULLET character in my Android App developed with Titanium.
I have this part of code:
function getFormattedPizza()
{
var text = win.crust + ' pizza with:\n';
if (win.toppings.length == 0)
{
text += '• Plain (cheese pizza)\n';
}
else
{
for (var i = 0; i < win.toppings.length; i++)
{
text += '• ' + win.toppings[i] + '\n';
}
}
return text;
}
and in my app I see the string &bull ; Plain (cheese pizza), not an unordered list.
In that way I can show a dots list?