Is it possble to add equivalent events such as Basic4androids Activity_Pause and Activity_Resume?
I need a trigger event which occurs when the main window has lost focus. For example
I need a trigger event which occurs when the main window has lost focus. For example
B4X:
Sub MyForm_LostFocus
Timer1.Enabled=False
End Sub
Sub MyForm_HasFocus
Timer1.Enabled=True
End Sub