我在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 -part显示绿色文本,而其余部分默认为白色。 但整个文本以白色显示。我做错了什么?
感谢您的帮助!
编辑:如果我删除第二部分,它会起作用,因此:
this.Question.setText(Html.fromHtml("<font color = 'green'>CORRECT: </font>"));
工作正常。
答案 0 :(得分:2)
尝试将geFillin()
调用移至fromHtml
参数。可能是字符串连接正在将Spanned
字符串转换回简单字符串。
this.Question.setText(
Html.fromHtml("<font color='green'>CORRECT: </font>" + this.CurrentQuestion.getFillin()));