Given EditText et;
When I programatically call et.setText("Hello World") a soft keyboard appears on the screen.
I want to prevent this soft keyboard from showing up. I don't mind if et remains focused or not.
I have tried et.clearFocus();
I still want to be able to focus on et and show the keyboard when tapping on it. Just not from et.setText()
 
     
     
    