Damir
Damir

Reputation: 56179

Can I in android show only numeric keyboard?

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

Answers (2)

Mohamed Anees A
Mohamed Anees A

Reputation: 4591

Use

android:digits="0123456789" android:inputType="phone"

in your XML

Upvotes: 0

Ovidiu Latcu
Ovidiu Latcu

Reputation: 72311

In your xml layout for your EditText use :

    android:inputType="number"

Upvotes: 6

Related Questions