A
A
artshelom2018-12-24 14:25:27
Unity
artshelom, 2018-12-24 14:25:27

How to remove scroll in webview??

How to remove scroll (top) as in the picture using this library5c20c21d7b773516507113.jpeg

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Denis Gaydak, 2018-12-24
@MrMureno

perhaps reworking the plugin itself that you are using can help you.
but I doubt that you really want to rewrite someone else's plugin.

mWebViewUA = webSettings.getUserAgentString();
            webSettings.setSupportZoom(true);
            webSettings.setBuiltInZoomControls(true);
            webSettings.setDisplayZoomControls(false);
            webSettings.setLoadWithOverviewMode(true);
            webSettings.setUseWideViewPort(true);
            webSettings.setJavaScriptEnabled(true);

in the android part, for example, zoom parameters and other things.
but in general, no way.
you have a choice:
- write your own cool and adequate browser))
- open the link in a normal browser))
- receive only data from the site and display it yourself))
- sort through plugins until you come across a suitable one)

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question