activity_keypress

  1. R

    Android Question API 36 Problem - Activity_Keypress event does not fire.

    I have a simple legacy calculator app (pre-B4X pages) that is sold the Play store. Google tell me that it needs to be updated to API36 before the end of August. It all seems to work aside from one glaring problem.... The Activity_Keypress event does not fire at all. The code is simple: Sub...
  2. Hakanunver

    Android Question Ultimatewebview2 handle All keypress events

    Hi Im using Ultimatewebview2 . My problem is after I touch any links on page. after that I can handle only BACK key. I didint recevive any key information. Im using external keyboard. But application first started in main I received all keys until I touched Ultimatewebview2. Have Any solution...
  3. R

    Android Question B4XPages, press back key when in edittext with Auto-fill showing

    In B4XPages, the back key press (bottom right of the bar at the bottom of the screen) is handled by Main with this Sub: Sub Activity_KeyPress (KeyCode As Int) As Boolean Return B4XPages.Delegate.Activity_KeyPress(KeyCode) End Sub This then should trigger in the B4XPage this Sub...
  4. M

    Android Question B4XPages KeyPress

    How to use KeyPress with B4XPAGES? I have a webview in B4XMainPage and I would like to use the command webview.back, I don't know how to work with keypress in separate classes Sub Activity_KeyPress (KeyCode As Int) As Boolean If KeyCode = KeyCodes.KEYCODE_BACK Then Log("teste1")...
  5. L

    Android Question How to intercept or simulate first tab key press

    Hello, Some time ago I developed on my application a barcode scanning. I do this intercepting the chars with activity_keypress and when I receive the tab key my application search the barcode. It works, but I got a problem that my customer reject. The application starts to read the barcode...
Top