Search in sources :

Example 11 with Validator

use of com.mobsandgeeks.saripaar.Validator in project android-saripaar by ragunathjawahar.

the class UnorderedValidateActivity method onCreate.

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_un_ordered_validate);
    // UI References
    mNameEditText = (EditText) findViewById(R.id.nameEditText);
    mAddressEditText = (EditText) findViewById(R.id.addressEditText);
    mEmailEditText = (EditText) findViewById(R.id.emailEditText);
    mPhoneEditText = (EditText) findViewById(R.id.phoneEditText);
    mResultTextView = (TextView) findViewById(R.id.resultTextView);
    RadioGroup modeRadioGroup = (RadioGroup) findViewById(R.id.modeRadioGroup);
    Button saripaarButton = (Button) findViewById(R.id.saripaarButton);
    // Validator
    mValidator = new Validator(this);
    mValidator.setValidationListener(this);
    // Event listeners
    modeRadioGroup.setOnCheckedChangeListener(this);
    saripaarButton.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            try {
                mValidator.validate();
            } catch (IllegalStateException e) {
                mResultTextView.setText("CRASH");
            }
        }
    });
}
Also used : RadioGroup(android.widget.RadioGroup) Button(android.widget.Button) TextView(android.widget.TextView) View(android.view.View) Validator(com.mobsandgeeks.saripaar.Validator)

Example 12 with Validator

use of com.mobsandgeeks.saripaar.Validator in project android-saripaar by ragunathjawahar.

the class UnorderedValidateTillActivity method onCreate.

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_un_ordered_validate_till_before);
    // UI References
    mNameEditText = (EditText) findViewById(R.id.nameEditText);
    mAddressEditText = (EditText) findViewById(R.id.addressEditText);
    mEmailEditText = (EditText) findViewById(R.id.emailEditText);
    mPhoneEditText = (EditText) findViewById(R.id.phoneEditText);
    mResultTextView = (TextView) findViewById(R.id.resultTextView);
    RadioGroup modeRadioGroup = (RadioGroup) findViewById(R.id.modeRadioGroup);
    // Validator
    mValidator = new Validator(this);
    mValidator.setValidationListener(this);
    // Event listeners
    mNameEditText.setOnFocusChangeListener(this);
    mAddressEditText.setOnFocusChangeListener(this);
    mEmailEditText.setOnFocusChangeListener(this);
    mPhoneEditText.setOnFocusChangeListener(this);
    modeRadioGroup.setOnCheckedChangeListener(this);
}
Also used : RadioGroup(android.widget.RadioGroup) Validator(com.mobsandgeeks.saripaar.Validator)

Example 13 with Validator

use of com.mobsandgeeks.saripaar.Validator in project android-saripaar by ragunathjawahar.

the class ValidateInvisibleViewsActivity method onCreate.

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_validate_invisible_views);
    // View references
    mNameEditText = (EditText) findViewById(R.id.nameEditText);
    mEmailEditText = (EditText) findViewById(R.id.emailEditText);
    mResultTextView = (TextView) findViewById(R.id.resultTextView);
    RadioButton showViewRadioButton = (RadioButton) findViewById(R.id.showRadioButton);
    RadioButton hideViewRadioButton = (RadioButton) findViewById(R.id.hideRadioButton);
    CheckBox validateHiddenViewsCheckBox = (CheckBox) findViewById(R.id.validateHiddenViewsCheckBox);
    Button saripaarButton = (Button) findViewById(R.id.saripaarButton);
    // Validator
    mValidator = new Validator(this);
    mValidator.setValidationListener(this);
    // Event listeners
    showViewRadioButton.setOnCheckedChangeListener(this);
    hideViewRadioButton.setOnCheckedChangeListener(this);
    validateHiddenViewsCheckBox.setOnCheckedChangeListener(this);
    saripaarButton.setOnClickListener(this);
}
Also used : CompoundButton(android.widget.CompoundButton) RadioButton(android.widget.RadioButton) Button(android.widget.Button) CheckBox(android.widget.CheckBox) RadioButton(android.widget.RadioButton) Validator(com.mobsandgeeks.saripaar.Validator)

Example 14 with Validator

use of com.mobsandgeeks.saripaar.Validator in project android-saripaar by ragunathjawahar.

the class CustomViewDataAdapterActivity method onCreate.

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_custom_view_data_adapter);
    // UI References
    mBooleanFloatLabeledEditText = (FloatLabeledEditText) findViewById(R.id.booleanFloatLabelEditText);
    mRegisterAdapterRadioButton = (RadioButton) findViewById(R.id.registerAdapterRadioButton);
    mResultTextView = (TextView) findViewById(R.id.resultTextView);
    mSaripaarButton = (Button) findViewById(R.id.saripaarButton);
    // Validator
    mValidator = new Validator(this);
    mValidator.setValidationListener(this);
    // Event listeners
    mSaripaarButton.setOnClickListener(this);
    mRegisterAdapterRadioButton.setOnCheckedChangeListener(this);
}
Also used : Validator(com.mobsandgeeks.saripaar.Validator)

Example 15 with Validator

use of com.mobsandgeeks.saripaar.Validator in project android-saripaar by ragunathjawahar.

the class OrderedValidateActivity method onCreate.

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_un_ordered_validate);
    // UI References
    mNameEditText = (EditText) findViewById(R.id.nameEditText);
    mAddressEditText = (EditText) findViewById(R.id.addressEditText);
    mEmailEditText = (EditText) findViewById(R.id.emailEditText);
    mPhoneEditText = (EditText) findViewById(R.id.phoneEditText);
    mResultTextView = (TextView) findViewById(R.id.resultTextView);
    RadioGroup modeRadioGroup = (RadioGroup) findViewById(R.id.modeRadioGroup);
    Button saripaarButton = (Button) findViewById(R.id.saripaarButton);
    // Validator
    mValidator = new Validator(this);
    mValidator.setValidationListener(this);
    // Event listeners
    modeRadioGroup.setOnCheckedChangeListener(this);
    saripaarButton.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            mValidator.validate();
        }
    });
}
Also used : RadioGroup(android.widget.RadioGroup) Button(android.widget.Button) TextView(android.widget.TextView) View(android.view.View) Validator(com.mobsandgeeks.saripaar.Validator)

Aggregations

Validator (com.mobsandgeeks.saripaar.Validator)23 RadioGroup (android.widget.RadioGroup)8 Button (android.widget.Button)7 TextView (android.widget.TextView)6 View (android.view.View)4 CompoundButton (android.widget.CompoundButton)4 Context (android.content.Context)3 RadioButton (android.widget.RadioButton)3 Bundle (android.os.Bundle)1 CheckBox (android.widget.CheckBox)1 EditText (android.widget.EditText)1 QuickRule (com.mobsandgeeks.saripaar.QuickRule)1 HometownZipCode (com.mobsandgeeks.saripaar.tests.ui.validation.HometownZipCode)1