How to disable contextual action bar in web view? I Want text selection feature to remain as it is , but i don't want the Contextual action bar to come, how can i disable it ?
Using this code hides the contextual action bar but it is looking bad(whole screen is shaking ) and also text selection is not retaining.
@Override
public void onSupportActionModeStarted(ActionMode mode) {
super.onSupportActionModeStarted(mode);
mode.finish();
}
How can i disable the contextual actionbar ? Is there any other way?