Hi,
I have now my first game on google play store and I have a strange behavior
of a highscorelist, which shows the date of an other player in arabic letters.
All others are in latin characters. See my screenshot.
My cellphone is configured for : english . But why I see an arabic date ?
understand. here are some details. Its easy.
I make an insert into an sqlite table. The date field is a text field.
After I show it in a xcustomlistview.
Sub CreateListItem(diff As String, rounds As String , name As String, date As String, Width As Int, Height As Int,color As Int) As Panel
Dim p As Panel
p.Initialize("")
p.SetLayout(0, 0, Width, Height)
p.LoadLayout("ScoreItem")
lblName.Text = name
lblName.TextColor=color
lblRounds.Text=rounds
lblRounds.textColor=color
lblScoreDate.Text=date
lblScoreDate.textColor=color
lblDiff.Text=diff
lblDiff.textColor=color
Return p
End Sub
Correction: Yes of course you are right, if there are ' in the name, like in cinese and other foreign languages . It will be a problem in my sql
I will change it. But I think the date problem is something else