Answers for "checking if the input field is empty try catch android studio"

2

testing if editText is empty java

if (TextUtils.isEmpty(editText.getText().toString()))
{
    Toast.makeText(MainActivity.this, 
                   "Empty field not allowed!",
                   Toast.LENGTH_SHORT).show();
}
else 
{
    Toast.makeText(MainActivity.this,
                  "Proceed..",
                  Toast.LENGTH_SHORT).show();
}
Posted by: Guest on July-09-2020

Code answers related to "checking if the input field is empty try catch android studio"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language