We have a 4.2 android app working in different languages. In the greek language, emails are written with the latin alphabet so we need the keyboard showing up for those fields to be in English, and in any other field, in Greek.
The webapp specifies those email fields as input type="email"
but the keyboard showing up is in greek, with the @ symbol though.
So, we need to show a different keyboard than the system language on the email field (as in Greece, people don't have emails with greek chars)
I've thought about capturing the click event for those fields in the crosswalk activity and change the keyboard there (with something like this), but I'm not sure if it'd be the correct way of doing it or if it'd work.
Thanks in advance!