Disable text selection in webview

Is there a way to disable text selection of WebView, while still allowing the user to click on links and scroll through the page?
Note: since this WebView would display multiple URLs, it would not be realistic to modify all the web pages it displays.

I tried using a transparent WebView in front of the displaying WebView, but it just isolates the displaying WebView completely, which also means no scrolling and link-clicking.
image

Technically, it is possible on some platforms. Which platforms are you working on?

Basically, after the WebView is loaded, we inject some JS codes to prevent form selecting text.

that depends on the CSS config of your web page loaded in webview, it’s also possible to use @StudioAMK 's method