我必须在Android中展示一些操作,,,
但我有一些菜鸟问题,
public void calculateButtonPressed() {
// TODO Auto-generated method stub
Button button = (Button) findViewById(R.id.result);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
Log.d("myTag", "result biatch");
String text=et.getText().toString();
//toast msg
//Toast msg = Toast.makeText(getBaseContext(),text, Toast.LENGTH_LONG);
// msg.show();
//set Text
tv.setText(text);
//result_tv.setText("copao");
int total = 1+2+3;
result_tv.setText(total);
}
});
}
所以应用程序崩溃了,因为我没有正确使用变量??
如果我打印result_tv.setText("copao");
它工作正常
但在我的基本操作中,应用程序崩溃了,
int total = 1+2+3;
result_tv.setText(total);
所以我错过了什么?
谢谢!