Reputation: 249
I want to have an EditText which only allows numeric inputs. It should not allow even decimal point (.) in the field.
tried
<EditText
.....
android:digits="0123456789"
android:inputType="number"
android:maxLength="4"
.....
/>
But it still accepts decimal point. Any solution to this problem ?
Upvotes: 3
Views: 1376
Reputation: 4462
Try like this..
android:inputType="number|none"
android:maxLength="3"
android:digits="0123456789"
Upvotes: 1