'Android EditText number pad keyboard with version like filter(TextWatcher)
Solution 1:[1]
I think you could just add . to EditText android:digits xml value
Like so :
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:digits="0123456789."
android:inputType="numberDecimal"
/>
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Sabriael |

