A wrap for this Github project. Use the button to toggle the state or touch the check box to toggle the state. Using either the button or just touching the checkbox will raise an event in the B4A project where the state of the checkbox can be determined.
Library:
ACheckBox
Author: Github: Wallace (Bigmercu), Wrapped by: Johan Schoeman
Version: 1
Sample code:
Library:
ACheckBox
Author: Github: Wallace (Bigmercu), Wrapped by: Johan Schoeman
Version: 1
- ACheckBox
Events:- check_changed (checked As Boolean)
- ba As BA
- BringToFront
- DesignerCreateView (base As PanelWrapper, lw As LabelWrapper, props As Map)
- 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)
- isHook (isHook As Boolean)
- isShowBorder (isShowBorder As Boolean)
- toggle
- Background As Drawable
- Checked As Boolean [write only]
- Color As Int [write only]
- ColorAfter As Int [write only]
- ColorBefore As Int [write only]
- Enabled As Boolean
- Height As Int
- Left As Int
- Parent As Object [read only]
- Tag As Object
- Text As String [write only]
- TextColor As Int [write only]
- TextSize As Int [write only]
- Top As Int
- Visible As Boolean
- Width As Int
Sample code:
B4X:
#Region Project Attributes
#ApplicationLabel: ACheckBox
#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 acb1 As ACheckBox
Private Button1 As Button
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")
acb1.Checked = True
acb1.isHook(True)
acb1.TextColor = Colors.Yellow
acb1.Text = "Test me"
acb1.TextSize = 25
acb1.ColorBefore = Colors.Red
acb1.ColorAfter = Colors.Green
acb1.isShowBorder(True)
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
Sub acb1_check_changed(isboxchecked As Boolean)
Log("isboxchecked = " & isboxchecked)
End Sub
Sub Button1_Click
acb1.toggle
End Sub