Android Question message with mouse pointer

Isac

Active Member
Licensed User
Longtime User
hi,
I would like to bring up a message when the mouse pointer is positioned on the editbox.
Is there any library?
I thank everyone.
 

DonManfred

Expert
Licensed User
Longtime User
What mouse? What pointer?
 
Upvote 0

eurojam

Well-Known Member
Licensed User
Longtime User
May be you can use the FocusChanged Event
B4X:
Sub EditText1_FocusChanged (HasFocus As Boolean)
  If HasFocus Then
    'Do something
  End If
End Sub
 
Upvote 0
Top