We have an app that is using webview to present some HTML pages. This HTML page has input type and we were using input-type = number as we only accept numbers with decimal in this field. So the numeric android keypad appeared with the decimal point.
The problem is the Samsung devices updated to Android 4.3. Now the decimal point is missing from the numeric keyboard.
So we need to put the common keyboard in order to have the decimal point. The problem is that the common keypad appears with letters and we want by default that the keypad appears on the numbers part of the keyboard in order to make more user friendly. Like this.
How can we achieve this??
EDIT: Maybe i haven't explain well. The problem is on a HTML page not in an android TextView So all the android:type answers are not useful.
You can set for keyboard as InputType number by overriding in class file of the webview laypout you are using: foloow this code
It might help you