Skip to content

Instantly share code, notes, and snippets.

@foxanna
Created September 17, 2018 12:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save foxanna/8382d164057c37200fba19a2b7383b2b to your computer and use it in GitHub Desktop.
Save foxanna/8382d164057c37200fba19a2b7383b2b to your computer and use it in GitHub Desktop.
public class CustomInsertionActionModeCallback implements ActionMode.Callback {
@Override
public boolean onCreateActionMode(ActionMode mode, Menu menu) {
return false;
}
@Override
public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
return false;
}
@Override
public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
return false;
}
@Override
public void onDestroyActionMode(ActionMode mode) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment