我有一个EditText
和一个TextView
和Button
来执行加法运算和对数字Button
进行运算,我想要EditText
中的值并执行加,乘,除等操作,所以我只需要帮助我的朋友建议我从单个EditText
中检索两个值,所以建议我使用split()
,但我不知道如何实现它。
答案 0 :(得分:0)
如何从edittext获取文本?
初始化edittext:
EditText editText = findViewById(R.id.edittext);
String[] editTextValues = edittext.getText().toString().split(" ");
现在使用像这样的editTextValues
int firstValue = Integer.parse(editTextValues[0]);
int secondValue = Integer.parse(editTextValues[1]);
int sum = firstValue + secondValue;