How to prevent keyboard from closing when bottom dialog is open?

1.2k Views Asked by At

Is there a way not to close keyboard, but just show dialog insted of keyboard(over it). After dialog is closed I need to continiue typing without opening keyboard again?

enter image description here

This dialog is simple child of BottomDialogSheet:

public class BottomPage extends BottomSheetDialog {
    public BottomPage(@NonNull Context context) {
        super(context);

        View v = View.inflate(context, R.layout.layout_bottom_sheet, null);
        setContentView(v);
    }
}

I've already got implementation with Popup window that covers the keyboard with other layout, but there is same problem when I first opent popup and after that press the edit text to show keyboard - popup hides, keyboard shows. How can I prevent it, and let keyboard show without popup hiding? enter image description here

2

There are 2 best solutions below

3
On

You can't do it that simple. You have to get window and keybord height to do that.

Look at this library and make your own: https://github.com/ankushsachdeva/emojicon

0
On

Use the below code to keep the keyboard on the screen.

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

Play with the arguments of setSoftInputMode() to get some other effects.