Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Force keyboard to english language in Android

How to force keyboard to show only English(UK). I need this because i want to prevent user to enter other languages like Arabic, chines etc., And if user using Arabic keyboard then i need to force my app (keyboard) to use English(UK) keyboard.

kindly help me to achieve this. Thanks in advance.

like image 732
Ria Avatar asked Oct 12 '15 13:10

Ria


1 Answers

I think it would be better to filter the input keys. Even if you will be able to force English keyboard that doesn't force users to use only English letters because they can also long press a character or even have a another hardware keyboard (non-english).

So, you should listen to some events onTextChanged for example and reject all characters that you do not want to accept.

like image 194
denis_lor Avatar answered Sep 20 '22 10:09

denis_lor