Email keyboard for edit text
Add this to your layout:
android:inputType="textEmailAddress"
Well I found the solution which is to use
emailEditText.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS);
Add this to your layout:
android:inputType="textEmailAddress"
Well I found the solution which is to use
emailEditText.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS);