Skip to content

Instantly share code, notes, and snippets.

View maxoreli's full-sized avatar

Charbel TCHIAKPE maxoreli

View GitHub Profile
@maxoreli
maxoreli / CustomValidator.java
Last active June 6, 2017 15:30
Some useful custom validators to use with MaterialEditText (https://github.com/rengwuxian/MaterialEditText)
import android.support.annotation.NonNull;
import com.rengwuxian.materialedittext.validation.METValidator;
import java.util.regex.Pattern;
/**
* Created by MAXORELI on 16/07/2015.
*/
public class EmailValidator extends METValidator {
Pattern pattern;