How can I display a dialog above the keyboard

后端 未结 4 1613
野性不改
野性不改 2021-02-09 17:48

I\'m a newbie with android, I write an application which using the Dialog to display data when user select on one thing. This is how the dialog looks:

https://docs.googl

4条回答
  •  孤城傲影
    2021-02-09 18:24

    Have you tried ths one?

    Worked for me:

    http://developer.android.com/reference/android/view/Window.html#setSoftInputMode(int).

    alertDialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
    

提交回复
热议问题