I wanted the keyboard that android have with the shortcuts to ".com" to an editText, and another for an email input with the "@".
I've tried different things like this:
email_edit.setRawInputType(InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS);
facebook_edit.setRawInputType(InputType.TYPE_TEXT_VARIATION_WEB_EDIT_TEXT);
twitter_edit.setRawInputType(InputType.TYPE_TEXT_VARIATION_URI);
but nothing works and the keyboard that appears is the normal one.
Any suggestions?
Thanks!