ishaq ahmad
ishaq ahmad

Reputation: 75

How can we set a text field in android that only allow us to enter positive integer number

How can i set a text field in ANDROID that only allow positive integer numbers like 0, 1, 2, 3, 4, and so on

Upvotes: 0

Views: 483

Answers (1)

Ion Aalbers
Ion Aalbers

Reputation: 8030

Put this line in the xml:

    android:inputType="numberSigned"

Upvotes: 2

Related Questions