Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. android keyboar
    Log in to post

    • UNSOLVED How to handle back button event when android native virtual keyboard is active?
      Mobile and Embedded • virtualkeyboard textinput textarea android keyboar • • Darknes  

      1
      0
      Votes
      1
      Posts
      176
      Views

      No one has replied

    • TextArea and Android keyboard
      Mobile and Embedded • textarea android keyboar • • mrdebug  

      3
      0
      Votes
      3
      Posts
      956
      Views

      No effect in Android.
    • [ Android ] How make keyboard hide trigger QLinedEdit finished ?
      Mobile and Embedded • android keyboar • • Eddie  

      4
      0
      Votes
      4
      Posts
      1170
      Views

      Ok, sorry. Had a long day ;-) This should work: #include <QInputMethod> [slot] void whenKeyboardVisibiliyChanged() { if (QGuiApplication::inputMethod()->isVisible()) { yourLineEdit->clearFocus(); } } connect(QGuiApplication::inputMethod(), SIGNAL(visibleChanged(), yourObject, SLOT(whenKeyboardVisibiliyChanged()))); Cheers!