When i click on the edittextview then some times keyboard shown or some times keyboard are not shown.
In android 2.1 it show the keyboard when i click on the edittex
I didn't want to EditText lose a focus using editText.clearFocus(). Came up to this solution.
editText.clearFocus()
@Override public void onResume() { super.onResume(); if (Build.VERSION.SDK_INT < 11) { editText.clearFocus(); editText.requestFocus(); } }