我正在开发一个android应用程序,它从用户输入的文本字段中获取一些数据,并基于这些数据在新的文本字段中输出单个字符串。很简单,但是我需要字符串的一部分是斜体。
我已经找到了如何使整个文本字段以斜体显示(如下所示),但如何只选择构成要以斜体显示的字符串的特定变量?

public class RefGenActivity extends Activity {

private EditText reftext;

protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_refgen);
reftext = (EditText) findViewById(R.id.editText1);
reftext.setTypeface(null, Typeface.ITALIC); //SET TO ITALICS
reftext.setText(getRef());
}

任何帮助都将不胜感激!

最佳答案

你可以这样做:

String html = "This is a <i>Text</i>.";
editText.setText(Html.fromHtml(html));

07-27 13:34