Page scroll when soft keyboard popped up

前端 未结 10 1144
清歌不尽
清歌不尽 2020-11-30 00:05

I have a layout:




        
10条回答
  •  醉梦人生
    2020-11-30 00:45

    well the simplest answer i tried is just remove your code which makes the activity go full screen .I had a code like this which was responsible for making my activity go fullscreen :

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {

            getWindow().setFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS,
                    WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);
        }
    

    i just removed my code and it works completely fine although if you want to achieve this with your fullscreen on then you'll have to try some other methods

提交回复
热议问题