如何在单个EditText中添加两个或多个数字?

时间:2019-02-08 12:44:26

标签: android android-studio

我有一个EditText和一个TextViewButton来执行加法运算和对数字Button进行运算,我想要EditText中的值并执行加,乘,除等操作,所以我只需要帮助我的朋友建议我从单个EditText中检索两个值,所以建议我使用split(),但我不知道如何实现它。

1 个答案:

答案 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;