In my application, I use webView , where I display a website, the website has a copy button, when I click on this button, nothing is copied, all other buttons work as they should. How can I fix this problem?

The code that tried, but it did not solve the problem:

 webView = (WebView) findViewById(R.id.webView1); webView.getSettings().setJavaScriptEnabled(true); webView.getSettings().setDomStorageEnabled(true); webView.getSettings().setDatabaseEnabled(true); webView.getSettings().setMinimumFontSize(1); webView.getSettings().setMinimumLogicalFontSize(1); webView.getSettings().setAllowFileAccess(true); webView.getSettings().setAllowContentAccess(true); 
  • You can open the necessary link in chrome and everything)) yesterday I also encountered a similar problem, and I realized that it is very difficult to take into account everything in this view for a full browser replacement. I advise you to open through the browser and the troubles are much smaller and more convenient. - Andrew Goroshko
  • @AndrewGoroshko I need to open it in WebView, I have already figured out all the other problems, only this button remains - Lucky_girl

0