FinestWebView-Android icon indicating copy to clipboard operation
FinestWebView-Android copied to clipboard

Unable to fit entire website content in webview when first initialized?

Open imsocb opened this issue 8 years ago • 0 comments

Hi as the title has stated I'm trying to fit entire webpage shown in the code below in webview however, it only show part of the webpage when first initialize and I have to manually zoom out in order to scale the webpage to see the entire webpage content. Tried .webViewLoadWithOverviewMode(true).webViewUseWideViewPort(true) to no avail. Please help Thank you!

String url = "http://livedemo.mbahcoding.com/ajax_crud_datatables_images_upload";
                new FinestWebView.Builder(MainActivity.this)
                        .webViewLoadWithOverviewMode(true)
                        .webViewUseWideViewPort(true)
                        .webViewBuiltInZoomControls(true).show(url);

imsocb avatar Feb 06 '17 20:02 imsocb