Hi to all ,
you see in the picture the Yellow Text is behind the red circles
how do i get them in front ?
this is the code that draws this
you see in the picture the Yellow Text is behind the red circles
how do i get them in front ?
this is the code that draws this
B4X:
For i = 0 To listx.Size-1
Log( "LIST : " & listx.Get(i))
mm6.DrawCircle( listx.Get(i) ,listy.Get(i), 10dip, Colors.Green,True, 11Dip)
If listx.Get(i)=275 Then
mm6.DrawText ( Listloc.GetItem(i)&"--", listx.Get(i) ,listy.Get(i),Typeface.DEFAULT_BOLD,15,Colors.Yellow,"RIGHT")
Else
mm6.DrawText ("--"& Listloc.GetItem(i), listx.Get(i) ,listy.Get(i),Typeface.DEFAULT_BOLD,15,Colors.Yellow,"LEFT")
End If
Next