• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. A

    EditText conditional problem

    So i have a EditText field, which i want to, check if the age is above and under my limits. if (Integer.parseInt(age.getText().toString()) < 18 && Integer.parseInt(age.getText().toString()) >= 0) But also, i want to simply check if the field is empty, for what i used. else if...