我正在尝试在 aTextView
或上显示计算结果EditText
。我从 one100lbs 和 tenPounds 中获取用户输入,然后将它们加在一起并尝试将其显示在 totalPounds 上。这不是我要使用的方程式,只是想看看它是否有效。目前,我的应用程序下面的代码崩溃了。这一切都归于一activity
。另外,当我更改我的更改EditText
位置的 ID 时,怎么会editText
发生relative layout
?请不要链接,我知道它很简单,但我是菜鸟。我已经搜索并且很难找到解决方案。
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.pounds);
addListenerOnSpinnerItemSelection();
EditText one100lbs = (EditText) findViewById(R.id.one100lbs);
int one = Integer.valueOf(one100lbs.getText().toString());
EditText tenPounds = (EditText) findViewById(R.id.tenPounds);
int two = Integer.valueOf(tenPounds.getText().toString());
int result = one + two;
TextView textView = (TextView) findViewById(R.id.totalPounds);
textView.setText(result);
}