简体   繁体   中英

Text formatting as like web text editor in android

I am getting data from web service and displaying in the text view. In web side i have a text editor to enter the data for a field. Now i want to display the data as such the format given in the text editor say line spaces, line breaks, font styles, font sizes etc., in the andriod textview. The web data is stored in server using php. Retrieving the data using json parsing. Is there any way to do this?

Yes you can do it.

your_textview.setText(Html.fromHtml("Your_html_code_from_json"));

fromHtml() allow you to write html content in textview with html tags effects. I hope it helps you.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM