Context Menu on Android WebView
I'd like to add a context menu on an entire Android WebView. I have the following code:
registerForContextMenu(findViewById(R.id.webview));
...
public void onCreateContextMenu (ContextMenu menu, View v, ContextMenuInfo menuInfo) {
super.onCreateContextMenu(menu, v, menuIn开发者_如何学Cfo);
if (v.getId() == R.id.webview) {
//display context menu
}
}
I noticed that the context menu is only displayed when a long press is done on a link in the webpage rendered by the WebView. When a long press is done in an empty area of the web view (an empty or text only area of the web page) the context menu is not displayed.
Any idea about how to display a context menu for the entire webpage and not only for links?
http://developer.android.com/reference/android/view/View.OnLongClickListener.html
Take a look at onLongClick() and then implement on your dialog with a list.
精彩评论