B4A Class [B4X] [XUI] SD: RadarProgressView (With Source Code)

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

1.gif


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

  • RadarProgress.zip
    10.6 KB · Views: 526
Last edited:

Hanstel

Member
Licensed User
I need not just a progress bar but a live display of gps devices as described on the original post
 

Star-Dust

Expert
Licensed User
Longtime User
I need not just a progress bar but a live display of gps devices as described on the original post
You should not write answers of conversations from other threads in this thread. Those who read do not understand what you're talking about and you're off topic.

This thread is related to the library and questions related to the use of this library or any bugs. For other issues open other threads.

Thank you
 

Star-Dust

Expert
Licensed User
Longtime User
Update code (to improve compatibility with ios)

upload_2018-8-23_10-35-4.png
 
Top