Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Validation allow only number and characters in edit text in android

Tags:

android

In my application I have to validate the EditText. It should only allow character, digits, underscores, and hyphens.

Here is my code:

edittext.addTextChangedListener(new TextWatcher() {                                              @Override     public void onTextChanged(CharSequence s, int start, int before, int count) {         // TODO Auto-generated method stub                                   }                                              @Override     public void beforeTextChanged(CharSequence s, int start, int count, int after) {         // TODO Auto-generated method stub     }                                              @Override     public void afterTextChanged(Editable s) {         // validation codes here                                          location_name=s.toString();         Toast.makeText(getApplicationContext(),location_name, Toast.LENGTH_SHORT).show();                                  if (location_name.matches(".*[^a-z^0-9].*")) {             location_name = location_name.replaceAll("[^a-z^0-9]", "");             s.append(location_name);             s.clear();             Toast.makeText(getApplicationContext(),"Only lowercase letters and numbers are allowed!",Toast.LENGTH_SHORT).show();         }                                        }  });                                           location.add(location_name); 

When I enter input into EditText, the application is force closed.

like image 330
kanna Avatar asked Jan 07 '13 08:01

kanna


People also ask

How can add only numbers in EditText in android?

You can use android:inputType="number" in the XML file. You can specify other values such as numberDecimal as well. Also, you might additionally want to use android:singleLine="true" for a single line Edittext .

How do I limit text editing?

This example demonstrate about How to limit text length of EditText in Android. Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project. Step 2 − Add the following code to res/layout/activity_main. xml.


1 Answers

Instead of using your "manual" checking method, there is something very easy in Android:

InputFilter filter = new InputFilter() {      public CharSequence filter(CharSequence source, int start,                                int end, Spanned dest, int dstart, int dend) {           for (int i = start;i < end;i++) {              if (!Character.isLetterOrDigit(source.charAt(i)) &&                  !Character.toString(source.charAt(i)).equals("_") &&                  !Character.toString(source.charAt(i)).equals("-"))              {                  return "";              }          }          return null;      }  };   edittext.setFilters(new InputFilter[] { filter });  

Or another approach: set the allowed characters in the XML where you are creating your EditText:

<EditText    android:inputType="text"    android:digits="0,1,2,3,4,5,6,7,8,9,*,qwertzuiopasdfghjklyxcvbnm,_,-"    android:hint="Only letters, digits, _ and - allowed" /> 
like image 60
Milos Cuculovic Avatar answered Sep 17 '22 08:09

Milos Cuculovic