• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps TextView HTML rendering

sreymj

Well-Known Member
How do you maintain HTML formatting with Html.fromHtml? The format is lost when displaying in a TextView.
 
Hello

you can use HTML.fromHtml("html tags content");

to display it in text view


Best of luck.

Thanks
Vinay Guntaka

That is what I am currently using. But, the HTML formatting is lost when displayed in the TextView.
 
Hello

you can use HTML.fromHtml("html tags content");

to display it in text view


Best of luck.

Thanks
Vinay Guntaka

As it turns out, I was approaching this all wrong. The correct solution is to use the WebView.

WebView webview;
webview = (WebView) findViewById(R.id.WebView01);
webview.getSettings().setJavaScriptEnabled(true);
webview.loadUrl("http://someurl.com");

Hello, WebView | Android Developers
 
Back
Top Bottom