android widget edittext,android.widget.Button cannot be cast to android.widget.EditText

Developing my first Android calculator application, I succeeded in updating a TextView in a new activity by passing the answer via an intent, but this requires the user to hit Back to perform another calculation. I'm trying to make the doCalculation button update a simple TextView in the MainActivity and getting the error:

06-22 11:08:17.318: E/AndroidRuntime(31328): Caused by: java.lang.ClassCastException: android.widget.Button cannot be cast to android.widget.EditText

Here's my code:

/** Called when the user clicks the Calculate! button */

public void doCalculation(View view) {

// Do something in response to button

int answerInt;

String answer;

EditText numberOne = (EditText) findViewById(R.id.number1);

EditText numberTwo = (EditText) findViewById(R.id.number2);

int numberOnee = Integer.parseInt(numberOne.getText().toString());

int numberTwoo = Integer.parseInt(numberTwo.getText().toString());

answerInt = numberOnee * numberTwoo;

answer = Integer.toString(answerInt);

TextView homeAnswerView = (TextView) findViewById(R.id.homeAnswerView);

homeAnswerView.setTextSize(40);

homeAnswerView.setText(answer);

}

For reference, here's the code that worked successfully launching a new activity:

// Called when the user clicks the Calculate! button

public void doCalculation(View view) {

// Do something in response to button

int answerInt;

String answer;

Intent intent = new Intent(this, DisplayCalculationActivity.class);

EditText numberOne = (EditText) findViewById(R.id.number1);

EditText numberTwo = (EditText) findViewById(R.id.number2);

int numberOnee = Integer.parseInt(numberOne.getText().toString());

int numberTwoo = Integer.parseInt(numberTwo.getText().toString());

answerInt = numberOnee * numberTwoo;

answer = Integer.toString(answerInt);

intent.putExtra(EXTRA_MESSAGE, answer);

startActivity(intent);

}

UPDATE, the XML for reference:

android:id="@+id/number2"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_below="@+id/textView3"

android:layout_centerHorizontal="true"

android:layout_marginTop="16dp"

android:ems="10"

android:inputType="number" />

android:id="@+id/number1"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_below="@+id/textView1"

android:layout_centerHorizontal="true"

android:ems="10"

android:inputType="number"

android:singleLine="true" />

android:id="@+id/calculateBtn"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_alignLeft="@+id/number2"

android:layout_alignRight="@+id/number2"

android:layout_below="@+id/number2"

android:layout_marginTop="14dp"

android:onClick="doCalculation"

android:text="Calculate!" />

Thank you for your help,

-Michael

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值