Cole
Cole

Reputation: 2815

How to get the keyboard for email addresses in my app?

I have an EditText in my app and it's set to

android:inputType="textEmailAddress"

but it comes up as the default keyboard instead of this one with the "@" and ".com" buttons: this

Is there a specific line of code to get it to show up???

Upvotes: 1

Views: 197

Answers (1)

Kannan Suresh
Kannan Suresh

Reputation: 4580

'android:inputType' is merely a hint for your IME. Check this post.

Hope this would answer your question.

Upvotes: 1

Related Questions