My problem: starting from the second time the software keyboard is shown on the screen, it entirely hides my EditText.
Attribute android:windowSoftInputMode=\"adjus
Usually the adjust pan doesn't work after the first time when we press the back button try to do that following way:- (can be implemented for the EditText, AutoCompleteTextView or any other view in which misbehaves)
@Override
public void onBackPressed() {
editText.clearFocus();
editText.setCursorVisible(false);
}
Hope It helps someone