0

我正在尝试使用 android 文档中显示的方法使一些文本变为粗体,但由于某种原因,文本仍然没有显示为粗体。

http://developer.android.com/guide/topics/resources/string-resource.html#FormattingAndStyling

XML:

<string name="updated_text">This is sample text. If this doesn\’t work, go to<b> news.google.com</b>; to find more infomation.</string> 

爪哇:

TextView assistInstrText = (TextView) findViewById(R.id.updated_text);
            assistInstrText.setText(Html.fromHtml(getResources().getString(R.string.updated_text)));
            assistInstrText.setText(styledText);
4

1 回答 1

0

你在文本视图中设置文本吗?因为当您设置文本时,您可能需要使用Html.fromHtml(String)

在这里查看答案

于 2013-10-22T19:13:47.077 回答