In my login form when user clicks on an EditText and presses the enter key, this inserts a new line, therefore increasing the EditText\'s size. Next moment, it returns to its pr
Use : android:singleLine = "true" or edittext.setSingleLine();
android:singleLine = "true"
edittext.setSingleLine();
And your ENTER key is gone