I created a new class of type CustomView [XUI]
It is a ProgressBar that simulates a submarine radar.
I attached an example to this post and the source code of the class
Use:
It is a ProgressBar that simulates a submarine radar.
I attached an example to this post and the source code of the class
Use:
B4X:
Sub Globals
Private RadarProgress1 As RadarProgress
End Sub
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("Layout1")
End Sub
Sub ButtonRound_Click
For i=0 To 100
RadarProgress1.Value=i
Sleep(30)
Next
End Sub
Attachments
Last edited: