开发中遇到部分机型中,如果调用了WebView.setWebChromeClient的方法,则没办法长按复制文字
查了一下是系统的一个bug https://bugzilla.wikimedia.org/show_bug.cgi?id=31484
解决方案是 覆写隐藏方法 onSelectionStart
private class InnerWebChromeClient extends WebChromeClient{ public void onSelectionStart(WebView view) { // By default we cancel the selection again, thus disabling // text selection unless the chrome client supports it. // view.notifySelectDialogDismissed(); } }
问题解决