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);