B4A Library HorizontalWheelView

A wrap for this Github project. Posting:
1. B4A project
2. B4A library files - copy them to your additional library folder.
3. The Java code

1.png



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

#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.

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 hwv1 As HorizontalWheelView
    Private Label1 As Label
    Private Label2 As Label
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")
   
    hwv1.ActiveColor = Colors.green
    hwv1.NormalColor = Colors.Yellow
    hwv1.DegreesAngle = 60
    'hwv1.RadiansAngle = 3.14159

End Sub

Sub Activity_Resume

End Sub

Sub Activity_Pause (UserClosed As Boolean)

End Sub

Sub hwv1_rotation_changed(angleradians As Double)
   
    Log("angle in radians = " & angleradians)
   
    Label1.Text = "Radians = " & NumberFormat(angleradians, 1, 2)
    Label2.Text = "Degrees = " & NumberFormat(360*angleradians/(2*cPI), 1, 2)
   
   
End Sub

Library:

horizontalWheelView
Author:
Github: Mykhailo Shchurov, Wrapped by: Johan Schoeman
Version: 1
  • HorizontalWheelView
    Events:
    • rotation_changed (angle As Double)
    Fields:
    • ba As BA
    Methods:
    • BringToFront
    • DesignerCreateView (base As PanelWrapper, lw As LabelWrapper, props As Map)
    • GetCompleteTurnFraction As Double
    • GetDegreesAngle As Double
    • GetRadiansAngle As Double
    • Initialize (EventName As String)
    • Invalidate
    • Invalidate2 (arg0 As Rect)
    • Invalidate3 (arg0 As Int, arg1 As Int, arg2 As Int, arg3 As Int)
    • IsInitialized As Boolean
    • RemoveView
    • RequestFocus As Boolean
    • SendToBack
    • SetBackgroundImage (arg0 As Bitmap)
    • SetColorAnimated (arg0 As Int, arg1 As Int, arg2 As Int)
    • SetLayout (arg0 As Int, arg1 As Int, arg2 As Int, arg3 As Int)
    • SetLayoutAnimated (arg0 As Int, arg1 As Int, arg2 As Int, arg3 As Int, arg4 As Int)
    • SetVisibleAnimated (arg0 As Int, arg1 As Boolean)
    Properties:
    • ActiveColor As Int [write only]
    • Background As Drawable
    • Color As Int [write only]
    • CompleteTurnFraction As Double [write only]
    • DegreesAngle As Double [write only]
    • Enabled As Boolean
    • Height As Int
    • Left As Int
    • MaxVisibleMarks As Int [write only]
    • NormalColor As Int [write only]
    • Parent As Object [read only]
    • RadiansAngle As Double [write only]
    • ShowActiveRange As Boolean [write only]
    • Tag As Object
    • Top As Int
    • Visible As Boolean
    • Width As Int
 

Attachments

  • b4aHorizontalWheel.zip
    8.6 KB · Views: 269
  • TheJavaCode.zip
    9.6 KB · Views: 261
  • horizontalWheelViewLibFiles.zip
    15.4 KB · Views: 281
Top