The basic android\'s web text selection menu is as shown in image attached below. It has options like copy, share, select all, web search.
I want to over ri
You need to overwrite action menus of activity
more info you can read :https://developer.android.com/guide/topics/ui/menus.html
HOW TO OVERWRITE:
@Override
public void onActionModeStarted(android.view.ActionMode mode) {
mode.getMenu().clear();
Menu menus = mode.getMenu();
mode.getMenuInflater().inflate(R.menu.highlight,menus);
super.onActionModeStarted(mode);
}
highlight