我想将冒号附加到EditText
. 我正在搜索如何追加,但EditText.append(str)
它只追加字符串或任何字符。
我在用phone_number.append(";");
但它没有更新。
提前致谢
我想将冒号附加到EditText
. 我正在搜索如何追加,但EditText.append(str)
它只追加字符串或任何字符。
我在用phone_number.append(";");
但它没有更新。
提前致谢
试试这个完美的作品。
phone_number.setText(phone_number.getText().toString()+";");
在此之前,您检查 EditText phone_number 不为空。
我在用
phone_number.setText("");
phone_number.setText(numb + ";");
这对我来说是工作..
可能看起来有点 hack,但如果你使用
String temp = phone_number.getText();
temp = temp + ";";
phone_number.setText(temp);
或更有效的编码方式(例如StringBuilder),它应该可以工作。