我想在同一文本区域显示多条消息,而不会清除之前的任何消息。
double betAmount=100;
messages.setText("you are betting,$"+betAmount+"\n");
messages.setText("you stand\n");
messages.setText("you hit\n");
你打赌,100美元
你站着
你打了
答案 0 :(得分:3)
messages.setText("you are betting,$"+betAmount+"\n");
messages.append("you stand\n");
messages.append("you hit\n");