我想在不丢失以前文本的情况下向 EditText 添加文本。
例如:输入时74
,我想在"4"
不删除之前输入的数字的情况下添加到文本框中"7"
。
public void add4()
{
res = (EditText)findViewById(R.id.editText1);
if(res.getText().toString() == "0")
{
res.setText("4");
}
else
{
// add number 4 to the remaining string
}
}