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);