I'd like to create programatically an EditText within this attribute:
android:inputType="number|numberSigned|numberDecimal"
In brief I'd like it to accept only numeric values. How do I have to set my EditText object?
|
I'd like to create programatically an EditText within this attribute:
In brief I'd like it to accept only numeric values. How do I have to set my EditText object?
| |||
|
feedback
|
|
The corresponding method for inputType is public void setInputType (int type) So something like the below should work (untested)
| |||
|
feedback
|