我正在尝试使用 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);