我在 Textview 的某些部分设置 textcolor 时遇到问题。文本在 layout-xml 中定义为白色。当用户在游戏中选择写答案时,会触发此方法调用:
this.Question = (TextView) findViewById(R.id.layout1Question);
this.Question.setText(Html.fromHtml("<font color = 'green'>CORRECT: </font>") + this.CurrentQuestion.getFillin());
在这里,我希望 CORRECT 部分显示绿色文本,而其余部分默认为白色。但整个文本显示为白色。我究竟做错了什么?
谢谢你的帮助!
编辑:如果我删除第二部分,它会起作用,因此:
this.Question.setText(Html.fromHtml("<font color = 'green'>CORRECT: </font>"));
工作正常。