If i click on my EditText, the virtual keyboard simple not shows up. The cursor is shown, but no keyboard to type on.
I even tried it with manually open but just no
Try with this, it worked for me.
EditText etHorseName = (EditText) getView().findViewById(R.id.horseName); etHorseName.clearFocus();
in onCreate() or where you want.
onCreate()