How can I display a dialog above the keyboard

后端 未结 4 1624
野性不改
野性不改 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:34

    create a Xml file name style.xml

    
    

    then Implement

    this works for me hoping it will work for you also.

    final Dialog dialog = new Dialog(this , R.style.FullHeightDialog);
    

    and also do changes in your manifest file

    android:windowSoftInputMode="adjustResize|adjustPan" 
    

提交回复
热议问题