Skip to content

harpzzz/Android-Validator

Repository files navigation

Android Validator

Android validator is used for validating the user input using Annotation

There are some Annotation are

  • @Email //for email validation
  • @Name //for Name validation
  • @Password // for Password min character length 8
  • @Checked // for Checkbox validation
  • @RadioCheck // for RadioGroup validation
  • @Mobile // for Mobile validation

With TextInputLayout and Custom Text

  • @Email(message = "please enter valid Email", til = R.id.tilEmail) //for email validation
  • @Name(message = "please enter valid Name", til = R.id.tilName) //for Name validation
  • @Password(message = "please password", til = R.id.tilPassword) // for Password min character length 8

//til is the id of TextInputLayout

More are coming soon...

How to use?

Step 1:

Project Gradle

allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}

Step 2:

Add the dependency

dependencies {
        compile 'com.github.harpzzz:Android-Validator:v1.0'
}

Step 3:

public class MainActivity extends AppCompatActivity implements ValidatorListener {

@Email(til = R.id.tilEmail)
private EditText etEmail;

@Name(message = "Name is not valid", til = R.id.tilName)
private EditText etName;

@Password(message = "Name is not valid", til = R.id.tilPassword)
private EditText etPassword;

Button btnSubmit;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    etEmail = (EditText) findViewById(R.id.edEmail);
    etName = (EditText) findViewById(R.id.edName);
    etPassword = (EditText) findViewById(R.id.edPassword);

    final Validator validator = new Validator(this);


    checkbox = (CheckBox) findViewById(R.id.checkbox);

    btnSubmit = (Button) findViewById(R.id.btnSubmit);

    btnSubmit.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            validator.validate();
        }
    });

}

@Override
public void onValidateSuccess() {
    Toast.makeText(this, "All Validate done properly", Toast.LENGTH_SHORT).show();
//do your task 
}

@Override
public void onValidateFailed(ArrayList list) {
//list of all failed

}

License

The MIT License (MIT)

Copyright 2017 Harpreet Singh

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Contact Us

Personal : Website