我在 EditText 中显示格式化文本,如下所示:
String msg = <b>Some text here</b>;
EditText txtMsg = (EditText) findViewById(R.id.txtMessage);
txtMsg.setText(Html.fromHtml(msg));
这在 EditText 中显示为“ Some text here ”。然后,稍后,我想从该 EditText 中提取带有标签的文本。但是,当我使用:
txtMsg.getText().toString();
它只是给了我“这里有一些文字”,没有格式。
对此有什么想法吗?