简体   繁体   中英

Cannot resolve setText method

This is the program.The last line it shows error like it cannot resolve setText and toString .

 public void onButtonClick(View v){}
 EditText e1=(EditText)findViewById(R.id.editText);
 EditText e2=(EditText)findViewById(R.id.editText2);
 TextView t1=(TextView)findViewById(R.id.textView);
 int num1 = Integer.parseInt(e1.getText().toString());
 int num2 = Integer.parseInt(e2.getText().toString());
 int sum = num1 + num2;
 t1.setText(Integer.toString(sum));

The following should work:

   public void onButtonClick(View v){
        EditText e1=(EditText)findViewById(R.id.editText);
        EditText e2=(EditText)findViewById(R.id.editText2);
        TextView t1=(TextView)findViewById(R.id.textView);
        int num1 = Integer.parseInt(e1.getText().toString());
        int num2 = Integer.parseInt(e2.getText().toString());
        int sum = num1 + num2;
        t1.setText(Integer.toString(sum));
    }

This works change the data type

public void onButtonClick(View v){
        EditText e1=(EditText)findViewById(R.id.editText);
        EditText e2=(EditText)findViewById(R.id.editText2);
        TextView t1=(TextView)findViewById(R.id.textView);
        Integer num1 = Integer.parseInt(e1.getText().toString());
        Integer num2 = Integer.parseInt(e2.getText().toString());
        Integer sum = num1 + num2;
        t1.setText(Integer.toString(sum));
    }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM