how to toast a message if editText is empty by clicking button?

我的梦境 提交于 2019-12-20 04:51:27

问题


i have 2 edit Text in my application, 1 button to add the input numbers in the edit Text and 1 text view to display the result. I would like to put a toast message if my edit text tab is empty or null when i click the button. I have searched and tried all the solutions..and nothing seems to work. help please!!

here is my code for adding the two numbers.

MainActivity.java

package com.example.mycalc;

import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;

public class MainActivity extends Activity {



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

    final EditText editText1 = (EditText)findViewById(R.id.editText1);

    final EditText editText2 = (EditText)findViewById(R.id.editText2);

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

    final TextView textView1 = (TextView)findViewById(R.id.textView1);
    textView1.setText(" ");



    button1.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {


                double edit1 = Double.valueOf(editText1.getText().toString());  
                double edit2 = Double.valueOf(editText2.getText().toString());

                double text = edit1 + edit2;

                textView1.setText(String.valueOf(text));




        }
    });



}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();
    if (id == R.id.action_settings) {
        return true;
    }
    return super.onOptionsItemSelected(item);
}

}


回答1:


when user clicks button check:

if (editText1.getText().toString().trim().length() <= 0) {
    Toast.makeText(MainActivity.this, "It's empty", Toast.LENGTH_SHORT).show();
}

trim it to avoid blank spaces.




回答2:


To create and show a Toast use this code:

Toast.makeText(this, "Please input number", Toast.LENGTH_LONG).show();

In order to work properly, you should replace this code:

if (editText1.equals("")) {
    editText1.setError("please input number");
}
if (editText2.equals("")) {
    editText2.setError("please input number");
}

with this:

if (editText1.getText().toString().length() == 0 || editText1.getText().toString().length() == 1) {
    Toast.makeText(this, "Please input number", Toast.LENGTH_LONG).show();
}



回答3:


You can try this two function for string empty, not empty or null. It is simple return true or false. It is very use for all projects.

if(isEmpty(edittext.getText().toString())){
       // your Toast message if string is empty
}


if(isNotEmpty(edittext.getText().toString())){
      // your Toast message if string is not empty
}


 public static boolean isEmpty(String str) {

        if (str == null)
            return true;
        else if (str.toString().trim().length() == 0)
            return true;

        return false;
    }

    public static boolean isNotEmpty(String str) {

        if (str == null)
            return false;
        else if (str.toString().trim().length() == 0)
            return false;

        return true;
    } 



回答4:


Add to your click listener check

Toast toast = Toast.makeText(MainActivity.this, "Your Message", Toast.LENGTH_SHORT);
toast.show();



回答5:


Your code will be:

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

    final EditText editText1 = (EditText)findViewById(R.id.editText1);
    final EditText editText2 = (EditText)findViewById(R.id.editText2);
    Button button1 = (Button)findViewById(R.id.button1);
    final TextView textView1 = (TextView)findViewById(R.id.textView1);
    textView1.setText(" ");

    button1.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {        
            if(editText1.getText().toString().trim().length() == 0 || editText2.getText().toString().trim().length() == 0) {
                Toast.makeText(this,"Edittext is null",Toast.LENGTH_SHORT).show();
            }
            else {
                  double edit1 = Double.valueOf(editText1.getText().toString());  
                  double edit2 = Double.valueOf(editText2.getText().toString());
                  double text = edit1 + edit2;
                  textView1.setText(String.valueOf(text));
            }
        });
    }
}


来源:https://stackoverflow.com/questions/35827559/how-to-toast-a-message-if-edittext-is-empty-by-clicking-button

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!