在完成了一些教程之后,我正在使用 Android。
我有一个文本视图,我想在其中打印我在 strings.xml 文件中编写的各种文本行:
<string name="welcome">Welcome! What is your name?</string>
<string name="welcome2">Welcome!</string>
在我的主要我有:
gamehistory = (TextView)findViewById(R.id.textView2);
gamehistory.setText(R.string.welcome);
这工作正常,它显示文本。我想将文本框用作“日志”,以便稍后在我的代码中在下一行打印welcome2。
gamehistory.append("\n" + R.string.welcome2);
不幸的是,当我使用追加时,它会将字符串变成数字。
有没有办法避免这种情况?