Android Question Disable Right mouse click.

hub73

Active Member
Licensed User
Longtime User
Hi !

Is there a method to disable the right-click mouse button inside application. If i press my touchpad right button from my logitech keyboard then application directly exit. This is a problem when i put some data from my 'inside application' webview and inadvertently press the wrong keyboard button !

Many thanks !

Android device : Google tv with logitech keyboard k400r.
 

hub73

Active Member
Licensed User
Longtime User
B4X:
Sub Activity_KeyPress (KeyCode As Int) As Boolean
  Select KeyCode
     
  Case 4
      Msgbox ("Right Click","Hello")
    Return True
   
 End Select

End Sub

Many thanks !
 
Upvote 0
Top