i implemented the keyboard number with , and . available for typing, in android EditText.
But when i install my application, in just some devices, the dots and commas are not prompting in the EditText after pressed, anyone have any ideas about that ??
And if is possible to be some keyboard configuration in the specific device ? any helps ? here is my code example...
<EditText
android:id="@+id/notaosadd_quantidadenecessaria"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:maxLength="10"
android:digits="0123456789,."
android:hint=""
android:inputType="number" />