Hi guys,
I have this codes on LocationChanged event
I put my phone on a table, every 10 secs, it beep a sound.
It seem that even phone location was not changed, this event is always triggered.
I have this codes on LocationChanged event
B4X:
Private Sub flp_LocationChanged (Location1 As Location)
If DateTime.Now > LastUpdateTime + 10 * DateTime.TicksPerSecond Then
Private b As Beeper
b.Initialize(300, 1000) '300 milliseconds, 500 hz
b.Beep
End If
End Sub
I put my phone on a table, every 10 secs, it beep a sound.
It seem that even phone location was not changed, this event is always triggered.