You've a best way that is WebView for that. I've also done this with my project. I just get the details from the clicked item of listview and, passed into one webview. And, after, i've used the zoom property for that webview.
-Make a one layout with webview and whatever you need something there.
-And, use following code for that,
mWebView = (WebView) findViewById(R.id.webview);
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.getSettings().setBuiltInZoomControls(true);
mWebView.getSettings().setSupportZoom(true);
mWebView.getSettings().setTextSize(TextSize.SMALLER);
mWebView.loadDataWithBaseURL("", "<p align=\"justify\"><b> " + title+"</p></b><p align=\"justify\"><br>"+ desc + "</p>", "text/html", "utf-8", "");
mWebView.setWebViewClient(new HelloWebViewClient());
in this code, the title & desc are my string values which is coming from listview.
HelloWebViewClient()
public class HelloWebViewClient extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url);
return true;
}
}
This will make your this as simple.