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

后端 未结 5 2087
野的像风
野的像风 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条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-03 21:05

    Either add this as scrollbar's XML attribute

    android:isScrollContainer="false"

    or add this in Activity's tag in Manifest

    android:windowSoftInputMode="adjustPan"

提交回复
热议问题