B4A Library KdGaugeView

A partial wrap for this Github project. Posting the following:
1. B4A sample project
2. The Java code (for those that would like complete the lib/wrapper - add some more setters to the wrapper class and to KdGaugeView.java)
3. B4A Library files
4. LibRes.zip - extract it and copy the LibRes folder and its contents to be on the same folder level as that of the /Files and /Objects folders of the B4A project

Sample Code:
B4X:
#Region  Project Attributes
    #ApplicationLabel: b4aKdGaugeView
    #VersionCode: 1
    #VersionName:
    'SupportedOrientations possible values: unspecified, landscape or portrait.
    #SupportedOrientations: portrait
    #CanInstallToExternalStorage: False
#End Region

#AdditionalRes: ..\LibRes

#Region  Activity Attributes
    #FullScreen: False
    #IncludeTitle: True
#End Region

Sub Process_Globals
    'These global variables will be declared once when the application starts.
    'These variables can be accessed from all modules.
    Dim t As Timer

End Sub

Sub Globals
    'These global variables will be redeclared each time the activity is created.
    'These variables can only be accessed from this module.

    Private kdgv1 As KdGaugeView
    
End Sub

Sub Activity_Create(FirstTime As Boolean)
    'Do not forget to load the layout file created with the visual designer. For example:
    Activity.LoadLayout("main")
    t.Initialize("t", 2000)
    Activity.Color = Colors.LightGray
    kdgv1.SafeSpeedLimit = 120
    kdgv1.AnimationTime = 1000
    kdgv1.DialSpeedColor = Colors.Blue
    kdgv1.DialSpeedAlertColor = Colors.Yellow
    kdgv1.Speed = 75.0

End Sub

Sub Activity_Resume
    
    t.Enabled = True

End Sub

Sub Activity_Pause (UserClosed As Boolean)
    
    t.Enabled = False

End Sub

Sub t_tick
    
    Dim speed As Int = Rnd(0, 181)
    kdgv1.Speed = speed
    
End Sub

2.png


1.png
 

Attachments

  • LibRes.zip
    569 bytes · Views: 294
  • b4aLibFiles.zip
    10 KB · Views: 282
  • b4aKdGaugeView.zip
    9.2 KB · Views: 257
  • TheJavaCode.zip
    7.7 KB · Views: 232
Top