this works in onCreate of the activity
String htmlstring="<p><em><strong>hello world</strong></em></p>";
tv.setText(Html.fromHtml(html));
But when i used the same from a server in a listview its not working
ViewHolder holder = new ViewHolder();
holder.quest = (TextView) vi.findViewById(R.id.question_data);
holder.quest.setText(Html.fromHtml(htmlstring));
What is wrong! how can i achieve this?