If I want to enter a message into an editText, I enter some digits and my keyboard looks like that:

but after I add some text from code by clicking the button (et.setText(et.getText().toString() + " " + "abc")), keyboard changes to:

is there a way to prevent this happening?
I’ve used editable.append instead of et.setText() and this works