-1

I'm using qt framework to develop an android application, We know that by adding android:windowSoftInputMode="stateUnchanged|adjustPan" in androidmainifest.xml under activity tag we can prevent resizing window when displaying the virtual keyboard. But in Qt it not working!

can anyone help me to solve this problem ?

aidinMC
  • 1,415
  • 3
  • 18
  • 35

1 Answers1

0

If you have added android:windowSoftInputMode inside the activity tag, then please check the following solution

android:configChanges="orientation|keyboardHidden|screenSize"
android:windowSoftInputMode="stateUnchanged|adjustPan"

taken from: https://stackoverflow.com/a/11454337/1739677

Community
  • 1
  • 1
George Panayi
  • 1,768
  • 6
  • 26
  • 42