Enable longClick in WebView
问题 In the browser, you can longClick on URLs. In my WebView, you cannot. How can I make it so you can? 回答1: I had this same problem. Unfortunately, I could not find a way to make the standard browser menu options appear. You have to implement each one yourself. What I did was to register the WebView for context menus with activity.registerForContextMenu(webView) . Then I subclassed the WebView and overrode this method: @Override protected void onCreateContextMenu(ContextMenu menu) { super