0

I am using webview in my android application. Problem with textsize. In android 4.4, the text size id very small. But in android 5.0 or later it is very big in size. How to overcome this?

1 Answers1

0

Use the snippet

     WebView webView = (WebView) findViewById(R.id.webview);
     webView.getSettings().setLoadWithOverviewMode(true);
     webView.getSettings().setUseWideViewPort(true);
     webView.loadUrl("file:///android_asset/your_html.html");

For setting initial zoom link

Community
  • 1
  • 1
Anoop M Maddasseri
  • 10,213
  • 3
  • 52
  • 73