#Region Project Attributes
#ApplicationLabel: B4A Example
#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 Button1 As Button
Private EditText1 As EditText
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("1")
Dim R As Reflector
R.Target = EditText1
R.SetOnFocusListener("ETFocus")
R.Target = Button1
R.RunMethod2("setFocusableInTouchMode",True,"java.lang.boolean")
R.SetOnFocusListener("BtnFocus")
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
Sub ETFocus(ViewTag As Object,Focus As Boolean)
Log(Focus)
End Sub
Sub Button1_Click
Log("Clicked")
EditText1.RequestFocus
End Sub
Sub BtnFocus(ViewTag As Object,Focus As Boolean)
'The first click will focus the button so treat it as a click
If Focus Then Button1_Click
End Sub