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?
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?
You can't do it that simple. You have to get
window
andkeybord
height to do that.Look at this library and make your own: https://github.com/ankushsachdeva/emojicon