开发者

How to extract HTML styled text from an EditText in Android?

开发者 https://www.devze.com 2023-03-16 11:27 出处:网络
I am using HTML.fromHTML(...) to style the text of an EditText in Android. I need to p开发者_如何学运维ass the styled text back as a result to another activity. However, when I use an intent to pass t

I am using HTML.fromHTML(...) to style the text of an EditText in Android. I need to p开发者_如何学运维ass the styled text back as a result to another activity. However, when I use an intent to pass the contents of the EditText I am unable to figure out how to retain the HTML style of the original text.

As an example, suppose that the original text in the EditText is:

Today is the 21st

When I extract the text of using edittext.getText() and send it back as a result the resulting text is:

Today is the 21st

Is there a way to extract the HTML styled string from the EditText?


Use this to get the HTML of the styled text. You can use the HTML in EditText, TextView or WebView

String htmlString=Html.toHtml(edittext.getText());


You can send the HTML text itself and then call Html.fromHTML in the activity to which you are passing this text. fromHTML is meant to be used for text which has to be displayed on the screen


This won't work if your text is not spanned:

edittext.setText("");
//error here:
String htmlString = Html.toHtml((Spanned) edittext.getText()); 

You need to cast it by creating an instance first:

String htmlString = Html.toHtml(new SpannableString(edittext.getText()));
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号