Enable email keyboard on android for input type email
android, android-webview, email, html, input
Solution
You will only put
android:inputType="textEmailAddress"
in your edittext box.
Problem
I am creating application with `WebView`. I use the `WebView` to show HTML pages, containing input fields. If the HTML input fields expect an email address to be typed by the user, then I want to enable an email-friendly keyboard layout. Is it possible to set up the HTML or the `WebView` to show an email-friendly keyboard on Android, like you can on iPhone?