I have an Activity in Android, with two elements:
Activity
EditText
ListView
When my Activity
The simplest thing I did is to set focus on another view in onCreate:
myView.setFocusableInTouchMode(true); myView.requestFocus();
This stopped the soft keyboard coming up and there was no cursor flashing in the EditText.