Reputation: 56179
Can I in android show only numeric keyboard ? I know that is possible on iPhone but I don't know how to do this on Android.
Upvotes: 4
Views: 3008
Reputation: 4591
Use
android:digits="0123456789" android:inputType="phone"
in your XML
Upvotes: 0
Reputation: 72311
In your xml layout for your EditText
use :
android:inputType="number"
Upvotes: 6