I want to have a soft input keyboard when I click an EditText. I want the keyboard such that it is numeric at beginning, but when user press space, it becomes normal alpha keyboard. I read an answer about this and they say: Use:
yourEditText.setRawInputType(Configuration.KEYBOARD_QWERTY);
But in some phones, the space button is not present in keyboard. Any idea? Thanks.