How to keep a bottom nav bar from being pushed up on keyboard shown

后端 未结 5 2146
野的像风
野的像风 2021-02-03 20:20

How can i create a sticky footer that wont be moved up with the view when the softkey keyboard popups up?

Below is an image example of my current setup and what i want

5条回答
  •  半阙折子戏
    2021-02-03 21:18

    Just add this line in your onCreate, When this option set the window not adjust for a shown input method. :

    getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_NOTHING);
    

提交回复
热议问题