中的其餘文本我想將文本添加到EditText而不會丟失以前的文本。如何將文本添加到Android
例:打字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
}
}
使用'append'取代'settext.' – Raghunandan
'res.append( 「4」);' – Houcine