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> <\/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> <\/p><p> <br><\/p><p>meeting called order @ 7:30am<\/p><p> <br><\/p><p> <\/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. 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. 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. 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. 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. ar $4000<\/p><p> <br><\/p><p class=c2 style=\"text-indent:-.25in;list:l1 level1 lfo1\"> 2. 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. fall carnival<\/p><p> <br><\/p><p class=c2 style=\"margin-left:.75in;add-space: auto;text-indent:-.25in;list:l2 level1 lfo3\">a. 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. tickets<\/p><p> <br><\/p><p class=c2 style=\"margin-left:.75in;add-space: auto;text-indent:-.25in;list:l2 level1 lfo3\">c. 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. raffle <\/p><p> <br><\/p><p class=c2 style=\"margin-left:.75in;add-space: auto;text-indent:-.25in;list:l2 level1 lfo3\">e. auction<\/p><p> <br> <\/p><p class=c2 style=\"margin-left:.75in;add-space: auto;text-indent:-.25in;list:l2 level1 lfo3\"> f. 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. cake walk< \/p><p> <br><\/p><p class=c2 style=\"margin-left:.75in;add-space: auto;text-indent:-.25in;list:l2 level1 lfo3\" >h. 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. upgrade vital room computer<\/p><p> <br><\/p><p class=c2 style =\"text-indent:-.25in;list:l1 level1 lfo1\">5. add babysitters kindergar ten school night budget<\/p><p> <br><\/p><p class=c3 style=\"text-indent:-.25in;list:l1 level1 lfo1\"> 6. treasurer’s report- jamie<\/p><p> <br><\/p><p style=\"margin-left:.25in\"> <\/p><p> <br><\/p><p style=\"margin-left:.25in\">meeting adjourned 8:20<\/p><p> <br"}
Comments
Post a Comment