I'm developing a News App. Webservice returns me a String of HTML code. It is the content of an Article :
String result;
// result is returned from Webservice
result = "<p>Simply put, the 2013 Billboard Music Awards included a sizable helping of Bieber, with two performances in three hours and a Top Male Artist win before the Milestone Award was presented. Three months after another Justin -- Mr. Timberlake -- kept popping up at the 2013 Grammys and threatened overexposure, perhaps the audience at the Billboard Music Awards simply tired of seeing Bieber show up on stage and snag more of the spotlight.<br/><img align=\"Middle\" alt=\"\" border=\"0\" class=\"oImage\" height=\"335\" src=\"http://img2.news.zing.vn/2013/05/22/u2.jpg\" width=\"500\" \\/><br/>Plus, in the middle of the perceived mayhem was a monster-selling tour, with tons of Beliebers blissfully taking in the spectacle. But a dark cloud seemed embedded within the scraps of news coming from Bieber's tour over the past few months, and the Billboard Music Award boos could have been festering ill will toward one, some or all of them.<br/><img align=\"Middle\" alt=\"\" border=\"0\" class=\"oImage\" height=\"289\" src=\"http://img2.news.zing.vn/2013/05/22/u1.jpg\" width=\"500\"/></p>";
As you see, there are 2 image urls inside "result". "result" is the content of whole article.
When i use TextView to view the content of this article, images don't display :
TextView content = (TextView) findViewById(R.id.tvContent);
content.setText(Html.fromHtml(result));
How can i display content of this article fit the screen and all images are display. Here is my code.
Thank for helping.