Android White Background when keyboard fades away

后端 未结 7 1063
遥遥无期
遥遥无期 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 15:06

    Its happen because window re size itself to make room for the soft input area

    use android:windowSoftInputMode="adjustNothing" in AndroidManifest.xml

    <activity android:windowSoftInputMode="adjustNothing"
    ..
    ...
    </activity>
    
    0 讨论(0)
提交回复
热议问题