Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android: Limiting EditText to numbers

When creating an EditText in the java portion of the application, how do you limit it to numbers like you would in the xml? For example:

new EditText(this);

set like

<EditText
    android:id="@+id/h1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:inputType="numberDecimal"/>
like image 391
Biggsy Avatar asked Mar 05 '11 00:03

Biggsy


1 Answers

Something like this perhaps ?

EditText text = new EditText(this);
text.setInputType(InputType.TYPE_NUMBER_FLAG_DECIMAL);
like image 135
tacone Avatar answered Sep 27 '22 19:09

tacone