vote up 1 vote down star

Dear Friends, I want to know how to make a validation on EditText.That is ,I am having one EditText that edit text should has to accept only numaric values,If other than numaric value is typed by user then it should show some alert message "pls type the numaric value...." Is any function is avilable to find the entered text is particular type..pls give me some idea how to handle this situation.if possible give code snippet.

regards, s.kumaran.

flag

53% accept rate

2 Answers

vote up 2 vote down check

Rather than make a pop-up I would integrate a hint into the EditText and I would make it so the user could only type numbers into the EditText (android:numeric, android:hint):

		<EditText android:layout_height="wrap_content"
                      android:numeric="integer"
                      android:hint="@string/numberHint"
                      android:gravity="left"
                      android:id="@+id/name" 
                      android:layout_width="wrap_content" 
                      android:maxWidth="60dp" 
                      android:textSize="6pt">
		</EditText>

More information is available here: http://developer.android.com/reference/android/widget/EditText.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.