A wrap for this Github project. Posting:
1. B4A library files
2. B4A sample project
3. resource.zip - extract it and copy the folder and it's contents to be on the same folder level as that of the /Files and /Objects folders of the B4A project
4. LibRes.zip - extract it and copy the folder and it's contents to be on the same folder level as that of the /Files and /Objects folders of the B4A project
5. The Java code
Sample Code:
Drag the circles around with your finger....
Libraries enabled:
Take note of the B4A manifest file.
1. B4A library files
2. B4A sample project
3. resource.zip - extract it and copy the folder and it's contents to be on the same folder level as that of the /Files and /Objects folders of the B4A project
4. LibRes.zip - extract it and copy the folder and it's contents to be on the same folder level as that of the /Files and /Objects folders of the B4A project
5. The Java code
Sample Code:
B4X:
#Region Project Attributes
#ApplicationLabel: b4aPixelMeasuringTool
#VersionCode: 1
#VersionName:
'SupportedOrientations possible values: unspecified, landscape or portrait.
#SupportedOrientations: portrait
#CanInstallToExternalStorage: False
#End Region
#Region Activity Attributes
#FullScreen: False
#IncludeTitle: True
#End Region
#AdditionalRes: ..\LibRes
#AdditionalRes: ..\resource
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 pmt1 As PixelMeasuringTool
Dim bm As Bitmap
Dim bmd As BitmapDrawable
Private Label1 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")
bm.Initialize(File.DirAssets, "stitch.jpg")
bmd.Initialize(bm)
pmt1.BackgroundDrawable = bmd
pmt1.Circle1Color = Colors.Yellow
pmt1.Circle2Color = Colors.Green
pmt1.RulerColor = Colors.White
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
Sub pmt1_pixel_distance(distance As Float)
Label1.Text = "Pixel distance = " & distance
End Sub
Drag the circles around with your finger....
Libraries enabled:
Take note of the B4A manifest file.