displaying text with html tags as plain text in android -


i trying display text html tags plain text in android app. have tried using of html methods , end shoeing blank space instead of text.

 final ptamodel current = mdatalist.get(position);      spanned content;      if (android.os.build.version.sdk_int >= android.os.build.version_codes.n)     {         content = html.fromhtml(current.getcontent(), from_html_mode_legacy);     }     else     {         content = html.fromhtml(current.getcontent());     }      holder.date.settext(current.getdate());     holder.minutes.settext(content);     holder.title.settext(current.gettitle()); 

i found answer said use code above, end getting empty textview instead of plain text.

this content receiving html tags:

"content":"<p>&nbsp;<\/p><p>attendees:<\/p><p> <br><\/p><p>suzy bullett, lisa wagner, jamie flint,  camilla logeske, jennifer legault, emily hidalgo<\/p><p> <br><\/p><p>&nbsp;<\/p><p>   <br><\/p><p>meeting called order @ 7:30am<\/p><p> <br><\/p><p>&nbsp;<\/p><p>    <br><\/p><p><b style=\"bidi-font-weight:normal\">new business-<\/b><\/p><p> <br><\/p>   <p class=c1 style=\"text-indent:-.25in;list:l1 level1 lfo1\">1.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    how spend money made fall fundraiser <\/p><p> <br><\/p>    <p class=c2 style=\"margin-left:.75in;add-space: auto;text-indent:-.25in;list:l0 level1 lfo2\">    a.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; water bottle filler $1000 (possibly pay jogathon funds)<\/p><p>     <br><\/p><p class=c2 style=\"margin-left:.75in;add-space: auto;text-indent:-.25in;list:l0 level1 lfo2\">b.    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; chrome book cart $1500, $400 chrome books<\/p><p> <br><\/p>    <p class=c2 style=\"margin-left:.75in;add-space: auto;text-indent:-.25in;list:l0 level1 lfo2\">    c.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; teacher laptops, 8 needed<\/p><p> <br><\/p>    <p class=c2 style=\"margin-left:.75in;add-space: auto;text-indent:-.25in;list:l0 level1 lfo2\">    d.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ar $4000<\/p><p> <br><\/p><p class=c2 style=\"text-indent:-.25in;list:l1 level1 lfo1\">    2.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pta membership drive, end home form , put on facebook<\/p><p>     <br><\/p><p class=c2 style=\"text-indent:-.25in;list:l1 level1 lfo1\">3.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;      fall carnival<\/p><p> <br><\/p><p class=c2 style=\"margin-left:.75in;add-space: auto;text-indent:-.25in;list:l2      level1 lfo3\">a.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; first meeting 9\/22<\/p><p> <br><\/p>     <p class=c2 style=\"margin-left:.75in;add-space: auto;text-indent:-.25in;list:l2 level1 lfo3\">     b.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tickets<\/p><p> <br><\/p><p class=c2 style=\"margin-left:.75in;add-space:      auto;text-indent:-.25in;list:l2 level1 lfo3\">c.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; dinner, amy burrows<\/p><p>       <br><\/p><p class=c2 style=\"margin-left:.75in;add-space: auto;text-indent:-.25in;list:l2 level1 lfo3\">d.       &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; raffle <\/p><p> <br><\/p><p class=c2 style=\"margin-left:.75in;add-space:        auto;text-indent:-.25in;list:l2 level1 lfo3\">e.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; auction<\/p><p> <br>       <\/p><p class=c2 style=\"margin-left:.75in;add-space: auto;text-indent:-.25in;list:l2 level1 lfo3\">       f.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; games\/redemption center<\/p><p> <br><\/p><p class=c2 style=\"margin-l       eft:.75in;add-space: auto;text-indent:-.25in;list:l2 level1 lfo3\">g.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; cake walk<       \/p><p> <br><\/p><p class=c2 style=\"margin-left:.75in;add-space: auto;text-indent:-.25in;list:l2 level1 lfo3\"       >h.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; talked asking monetary donations instead of doing baskets, try ra       ise money teacher laptops way.<\/p><p> <br><\/p><p class=c2 style=\"text-indent:-.25in;list:l1 leve       l1 lfo1\">4.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; upgrade vital room computer<\/p><p> <br><\/p><p class=c2 style       =\"text-indent:-.25in;list:l1 level1 lfo1\">5.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; add babysitters kindergar       ten school night budget<\/p><p> <br><\/p><p class=c3 style=\"text-indent:-.25in;list:l1 level1 lfo1\">       6.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; treasurer’s report- jamie<\/p><p> <br><\/p><p style=\"margin-left:.25in\">       &nbsp;<\/p><p> <br><\/p><p style=\"margin-left:.25in\">meeting adjourned 8:20<\/p><p> <br"} 


Comments

Popular posts from this blog

serialization - Convert Any type in scala to Array[Byte] and back -

matplotlib support failed in PyCharm on OSX -

python - Matplotlib: TypeError: 'AxesSubplot' object is not callable -