Android White Background when keyboard fades away

后端 未结 7 1074
遥遥无期
遥遥无期 2021-02-18 14:34

Video of the problem from a different user but its the same

http://imgur.com/ca2cNZv

I have a background image set as follows :

  .pane {
  backg         


        
7条回答
  •  说谎
    说谎 (楼主)
    2021-02-18 14:57

    In AndroidManifest.xml file try to set windowSoftInputMode attribute to adjustNothing:

    android:windowSoftInputMode="adjustNothing"
    

    It worked for my Ionic project, avoiding the resize of Cordova webview when soft keyboard is on.

提交回复
热议问题