I want the keyboard to appear in following format.
I just tried all the available solutions but none of them is working for my soft keyboard.I want a solution for this.
I used the Keyboard Qwerty and input type options.
I want the keyboard to appear in following format.
I just tried all the available solutions but none of them is working for my soft keyboard.I want a solution for this.
I used the Keyboard Qwerty and input type options.
If your using EditText Then use in layout
android:inputType="numberDecimal"
in android manifest
android:windowSoftInputMode="adjustPan"
You need to configure the inputType of your EditText to number..
<EditText android:inputType = "number|text"..../>
You can try adding this to your code (where "input" is your EditText) :
input.setRawInputType(Configuration.KEYBOARD_12KEY);